From 215ac4569f897b10215248c4caa3191919a555df Mon Sep 17 00:00:00 2001 From: Kimplul Date: Sat, 13 Jul 2024 22:31:00 +0300 Subject: implement some more jit instructions --- tests/makefile | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) (limited to 'tests/makefile') 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!" -- cgit v1.2.3