aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile2
-rw-r--r--test-main.csc1
2 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 4756073..4c2be61 100644
--- a/Makefile
+++ b/Makefile
@@ -2,4 +2,4 @@ CSC = guile-compat/csc.fish
.PHONY: test
test: *.csc
- $(CSC) <( cat *-test.csc test-main.csc )
+ $(CSC) test-main.csc *-test.csc
diff --git a/test-main.csc b/test-main.csc
index a8c3a6e..7b45883 100644
--- a/test-main.csc
+++ b/test-main.csc
@@ -2,4 +2,5 @@
(only (csc testing) test-main))
+(for-each load (cdr (command-line)))
(test-main)