ecl/src/tests/Makefile.in
Daniel Kochmański 085fee3d3b Simplify tests structure
Also "make check" accepts TESTS argument for test suite. For instance:

make check TESTS=ffi

will run FFI tests suite.
2016-11-17 22:35:37 +01:00

18 lines
414 B
Makefile
Executable file

# -*- Mode: Makefile; indent-tabs-mode: nil -*-
# vim: set filetype=makefile tabstop=8 shiftwidth=4 expandtab:
ECL=@prefix@/@bindir@/ecl@EXEEXT@
.PHONY: all
all: check
check: config.lsp
$(ECL) -norc \
-load config.lsp \
-eval "(ecl-tests::run-tests '($(TESTS)))" \
-eval "(ext:quit)" \
2>&1 | tee check.log
clean:
rm -rf regressions.log cache