summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArun Isaac2022-07-09 00:26:02 +0530
committerArun Isaac2022-07-09 00:26:02 +0530
commit1a328b0c5f6048cd670774860caeb5e45e05f1e1 (patch)
tree9a84a608969318581c9bcaf46302b654d1377665
parent7e4ae17f1c12269e8c468ef8278150cbf1c621eb (diff)
downloadtissue-1a328b0c5f6048cd670774860caeb5e45e05f1e1.tar.gz
tissue-1a328b0c5f6048cd670774860caeb5e45e05f1e1.tar.lz
tissue-1a328b0c5f6048cd670774860caeb5e45e05f1e1.zip
Makefile: Run tests using a for loop.
If guile is passed all test files at once, it only runs the first one. * Makefile (check): Run tests using a for loop.
-rw-r--r--Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 37c912d..2bc955c 100644
--- a/Makefile
+++ b/Makefile
@@ -46,7 +46,9 @@ all: $(objects)
GUILE_AUTO_COMPILE=0 $(GUILD) compile -L . -o $@ $<
check:
- ./pre-inst-env $(GUILE) $(tests)
+ for test in $(tests); do \
+ ./pre-inst-env $(GUILE) $$test; \
+ done
install:
install -D $(scripts) --target-directory $(bindir)