mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-01-23 04:52:42 -08:00
Also "make check" accepts TESTS argument for test suite. For instance: make check TESTS=ffi will run FFI tests suite.
18 lines
414 B
Makefile
Executable file
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
|