diff options
author | Kimplul <kimi.h.kuparinen@gmail.com> | 2024-06-29 14:20:07 +0300 |
---|---|---|
committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2024-06-29 14:20:07 +0300 |
commit | 49aa680ccdac46d1d2a7f9f250999b7ff7099548 (patch) | |
tree | 1de3bd5209feadfd147f7a05d1ac925f98b747b1 /scripts/gen-tests | |
parent | 29718f2e84478b296c3198ae6d35cfd5d79efb14 (diff) | |
download | ejit-49aa680ccdac46d1d2a7f9f250999b7ff7099548.tar.gz ejit-49aa680ccdac46d1d2a7f9f250999b7ff7099548.zip |
start adding tests
Diffstat (limited to 'scripts/gen-tests')
-rwxr-xr-x | scripts/gen-tests | 27 |
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 |