From 539b0cced958736b6365e0b2b2c5d8b3e4cfb699 Mon Sep 17 00:00:00 2001 From: dzaima Date: Wed, 25 Jan 2023 15:40:53 +0200 Subject: [PATCH] enable code running testing for NO_RT build in test/moreCfgs.sh --- test/moreCfgs.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/moreCfgs.sh b/test/moreCfgs.sh index 72548a23..1cdd49d6 100755 --- a/test/moreCfgs.sh +++ b/test/moreCfgs.sh @@ -23,7 +23,7 @@ make f='-DFORMATTER=0' c && ./BQN -p 2+2 || exit make f='-DVMPOS=0' c && ./BQN -p 2+2 || exit make f='-DDONT_FREE' c && ./BQN -p 2+2 || exit make f='-DOBJ_COUNTER' c && ./BQN -p 2+2 || exit -make f='-DNO_RT' c || exit; echo "(nothing executed for this test)" +make f='-DNO_RT' c && ./BQN -p 2+2 || exit make f='-DLOG_GC' c && ./BQN -p 2+2 || exit make f='-DWRITE_ASM' c && ./BQN -p 2+2 || exit make f='-DUSE_PERF' c && ./BQN -p 2+2 || exit