aboutsummaryrefslogtreecommitdiff
path: root/scripts/gen-tests
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 /scripts/gen-tests
parent29718f2e84478b296c3198ae6d35cfd5d79efb14 (diff)
downloadejit-49aa680ccdac46d1d2a7f9f250999b7ff7099548.tar.gz
ejit-49aa680ccdac46d1d2a7f9f250999b7ff7099548.zip
start adding tests
Diffstat (limited to 'scripts/gen-tests')
-rwxr-xr-xscripts/gen-tests27
1 files changed, 27 insertions, 0 deletions
diff --git a/scripts/gen-tests b/scripts/gen-tests
new file mode 100755
index 0000000..934f13f
--- /dev/null
+++ b/scripts/gen-tests
@@ -0,0 +1,27 @@
+#!/bin/sh
+
+PREFIX=JIT_TEST
+for s in ${@}
+do
+ exe="tests/test-jit-$(basename ${s%.*})"
+ dep="tests/${exe}.d"
+
+ echo "${PREFIX} += ${exe}" >> tests.mk
+ echo "${dep}:" >> tests.mk
+ echo "-include ${dep}" >> tests.mk
+ echo "${exe}: ${s} ejit.o" >> tests.mk
+ echo " \$(COMPILE_JIT_TEST) ${s} ejit.o -o ${exe}" >> tests.mk
+done
+
+PREFIX=BCODE_TESTS
+for s in ${@}
+do
+ exe="tests/test-bcode-$(basename ${s%.*})"
+ dep="tests/${exe}.d"
+
+ echo "${PREFIX} += ${exe}" >> tests.mk
+ echo "${dep}:" >> tests.mk
+ echo "-include ${dep}" >> tests.mk
+ echo "${exe}: ${s} ejit.o" >> tests.mk
+ echo " \$(COMPILE_BCODE_TEST) ${s} ejit.o -o ${exe}" >> tests.mk
+done