aboutsummaryrefslogtreecommitdiff
path: root/tests/makefile
diff options
context:
space:
mode:
authorKimplul <kimi.h.kuparinen@gmail.com>2024-06-29 14:20:07 +0300
committerKimplul <kimi.h.kuparinen@gmail.com>2024-06-29 14:20:07 +0300
commit49aa680ccdac46d1d2a7f9f250999b7ff7099548 (patch)
tree1de3bd5209feadfd147f7a05d1ac925f98b747b1 /tests/makefile
parent29718f2e84478b296c3198ae6d35cfd5d79efb14 (diff)
downloadejit-49aa680ccdac46d1d2a7f9f250999b7ff7099548.tar.gz
ejit-49aa680ccdac46d1d2a7f9f250999b7ff7099548.zip
start adding tests
Diffstat (limited to 'tests/makefile')
-rw-r--r--tests/makefile32
1 files changed, 32 insertions, 0 deletions
diff --git a/tests/makefile b/tests/makefile
new file mode 100644
index 0000000..3ab921a
--- /dev/null
+++ b/tests/makefile
@@ -0,0 +1,32 @@
+include ./tests.mk
+
+LLVM ?= 0
+CROSS_COMPILE :=
+COMPILER != [ "$(LLVM)" != "0" ] \
+ && echo clang --target="$(CROSS_COMPILE)" \
+ || echo $(CROSS_COMPILE)gcc
+
+CFLAGS := -Wall -Wextra -O0 -g
+INCLUDE_FLAGS := -I include
+COMPILE_JIT_TEST := $(COMPILER) $(CFLAGS) $(INCLUDE_FLAGS)
+COMPILE_BCODE_TEST := $(COMPILER) $(CFLAGS) $(INCLUDE_FLAGS) -DFORCE_BCODE=1
+
+.PHONY: check
+check: $(BCODE_TESTS) $(JIT_TESTS)
+ echo "Success!"
+
+.PHONY: check-bcode
+check-bcode:
+ @echo "Running bytecode tests..."
+ @set -e; for test in $(BCODE_TESTS); do \
+ echo "Testing: $$test"; \
+ ./$$test; \
+ done
+
+.PHONY: check-jit
+check-jit:
+ @echo "Running jit tests..."
+ @set -e; for test in $(JIT_TESTS); do \
+ echo "Testing: $$test"; \
+ ./$$test; \
+ done