From 49aa680ccdac46d1d2a7f9f250999b7ff7099548 Mon Sep 17 00:00:00 2001 From: Kimplul Date: Sat, 29 Jun 2024 14:20:07 +0300 Subject: start adding tests --- scripts/gen-tests | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100755 scripts/gen-tests (limited to 'scripts') 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 -- cgit v1.2.3