diff options
author | Kimplul <kimi.h.kuparinen@gmail.com> | 2025-04-10 22:22:33 +0300 |
---|---|---|
committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2025-04-10 22:22:33 +0300 |
commit | 531d307d310881e69efc8ae8c8119f5f5799e0f9 (patch) | |
tree | 0038e06d042db954cd85f8b0076f5d1394a55421 /tests/makefile | |
parent | be5c83ba8e57bc67beee41bc2c7227e6b8ebd9d5 (diff) | |
download | ejit-531d307d310881e69efc8ae8c8119f5f5799e0f9.tar.gz ejit-531d307d310881e69efc8ae8c8119f5f5799e0f9.zip |
improve tests a bittail
+ Runs tests on all arches that I have easy access to
Diffstat (limited to 'tests/makefile')
-rw-r--r-- | tests/makefile | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/tests/makefile b/tests/makefile index 081170f..53115de 100644 --- a/tests/makefile +++ b/tests/makefile @@ -32,14 +32,4 @@ COMPILE_TEST := $(COMPILER) $(WARNFLAGS) $(OPTFLAGS) $(LTOFLAGS) \ .PHONY: check check: $(TESTS) - @echo "Running bytecode tests..." - @set -e; for test in $(TESTS); do \ - echo "Testing: $$test"; \ - ./$$test; \ - done - @echo "Running jit tests..." - @set -e; for test in $(TESTS); do \ - echo "Testing: $$test"; \ - ./$$test 1; \ - done @echo "Success!" |