summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 2d5fad4..5d9aa41 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
all: test
-TEST_MODULES := lace lace.lex lace.compiler
+TEST_MODULES := lace lace.lex lace.compiler lace.builtin lace.engine
LUA := LUA_PATH="$(shell pwd)/lib/?.lua;$(shell pwd)/extras/luacov/src/?.lua;;" lua5.1
@@ -15,7 +15,7 @@ test:
@$(RM) luacov.stats.out
@ERR=0; \
for MOD in $(sort $(TEST_MODULES)); do \
- echo "$${MOD}:"; \
+ echo -n "$${MOD}: "; \
$(LUA) test/test-$${MOD}.lua; \
test "x$$?" = "x0" || ERR=1; \
done; \