mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-01-30 04:10:44 -08:00
tests: make ansi-test a separate target not triggered by make check
This commit is contained in:
parent
ba45731c19
commit
00f96d34b0
3 changed files with 8 additions and 4 deletions
|
|
@ -115,6 +115,9 @@ realclean: distclean
|
|||
check:
|
||||
cd build && $(MAKE) check TESTS="$(TESTS)"
|
||||
|
||||
ansi-test:
|
||||
cd build && $(MAKE) ansi-test
|
||||
|
||||
# ==================== Various means of distribution ====================
|
||||
|
||||
TAR_DIR=ecl-$(VERSION)
|
||||
|
|
|
|||
|
|
@ -273,6 +273,9 @@ test_changes:
|
|||
check:
|
||||
cd tests && $(MAKE) clean && $(MAKE) check TESTS="$(TESTS)"
|
||||
|
||||
ansi-test:
|
||||
cd tests && $(MAKE) clean && $(MAKE) ansi-test
|
||||
|
||||
#
|
||||
# Rebuild ECL using its own image and compare. Does not work
|
||||
# right now.
|
||||
|
|
|
|||
|
|
@ -4,13 +4,11 @@
|
|||
ECL=@prefix@/@bindir@/ecl@EXEEXT@
|
||||
SHELL=/bin/bash -o pipefail
|
||||
|
||||
.PHONY: all check test ansi-test
|
||||
.PHONY: all check ansi-test
|
||||
|
||||
all: check
|
||||
|
||||
check: test ansi-test
|
||||
|
||||
test: config.lsp
|
||||
check: config.lsp
|
||||
$(ECL) --norc \
|
||||
--load config.lsp \
|
||||
--eval "(ecl-tests::run-tests '($(TESTS)))" \
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue