diff options
Diffstat (limited to 'tests/makefile')
-rw-r--r-- | tests/makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/makefile b/tests/makefile index 3ab921a..21f68dd 100644 --- a/tests/makefile +++ b/tests/makefile @@ -12,11 +12,11 @@ COMPILE_JIT_TEST := $(COMPILER) $(CFLAGS) $(INCLUDE_FLAGS) COMPILE_BCODE_TEST := $(COMPILER) $(CFLAGS) $(INCLUDE_FLAGS) -DFORCE_BCODE=1 .PHONY: check -check: $(BCODE_TESTS) $(JIT_TESTS) +check: check-bcode check-jit echo "Success!" .PHONY: check-bcode -check-bcode: +check-bcode: $(BCODE_TESTS) @echo "Running bytecode tests..." @set -e; for test in $(BCODE_TESTS); do \ echo "Testing: $$test"; \ @@ -24,7 +24,7 @@ check-bcode: done .PHONY: check-jit -check-jit: +check-jit: $(JIT_TESTS) @echo "Running jit tests..." @set -e; for test in $(JIT_TESTS); do \ echo "Testing: $$test"; \ |