aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorKimplul <kimi.h.kuparinen@gmail.com>2024-07-13 22:31:00 +0300
committerKimplul <kimi.h.kuparinen@gmail.com>2024-07-13 22:31:00 +0300
commit215ac4569f897b10215248c4caa3191919a555df (patch)
tree6957e76388d3f785c6bfcdbe920b67984bea0c2a /tests
parent5e64dbec81504aaacac1e733edd5230f59670466 (diff)
downloadejit-215ac4569f897b10215248c4caa3191919a555df.tar.gz
ejit-215ac4569f897b10215248c4caa3191919a555df.zip
implement some more jit instructions
Diffstat (limited to 'tests')
-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!"