diff options
author | Kimplul <kimi.h.kuparinen@gmail.com> | 2024-07-13 20:56:26 +0300 |
---|---|---|
committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2024-07-13 20:56:26 +0300 |
commit | ae9e103995c1d809be7b8717905593e7dbbf9d17 (patch) | |
tree | 0ceaf6ee66e1d67bb8d0b9dd6f37b5687e4c2f09 /tests/makefile | |
parent | e618924df98d4ee5037db86c768a8c8014e49c4c (diff) | |
download | ejit-ae9e103995c1d809be7b8717905593e7dbbf9d17.tar.gz ejit-ae9e103995c1d809be7b8717905593e7dbbf9d17.zip |
bytecode tests pass
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"; \ |