aboutsummaryrefslogtreecommitdiff
path: root/tests/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'tests/makefile')
-rw-r--r--tests/makefile10
1 files changed, 2 insertions, 8 deletions
diff --git a/tests/makefile b/tests/makefile
index 4a0afc9..5aeef98 100644
--- a/tests/makefile
+++ b/tests/makefile
@@ -11,21 +11,15 @@ INCLUDE_FLAGS := -I include
COMPILE_TEST := $(COMPILER) $(CFLAGS) $(INCLUDE_FLAGS)
.PHONY: check
-check: $(TESTS) check-bcode check-jit
- echo "Success!"
-
-.PHONY: check-bcode
-check-bcode: $(TESTS)
+check: $(TESTS)
@echo "Running bytecode tests..."
@set -e; for test in $(TESTS); do \
echo "Testing: $$test"; \
./$$test; \
done
-
-.PHONY: check-jit
-check-jit: $(TESTS)
@echo "Running jit tests..."
@set -e; for test in $(TESTS); do \
echo "Testing: $$test"; \
./$$test 1; \
done
+ @echo "Success!"