proper test order of precomp test

This commit is contained in:
dzaima 2022-07-26 04:54:15 +03:00
parent a6deb4b691
commit 88f65850fa

View File

@ -22,8 +22,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
make f='-DNO_RT -DPRECOMP' c && ./BQN || exit
make f='-DNO_RT' c || exit; echo "(nothing executed for this test)"
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
@ -32,3 +31,4 @@ make f='-DREPL_INTERRUPT=0' c && ./BQN -p 2+2 || exit
make f='-DREPL_INTERRUPT=1' c && ./BQN -p 2+2 || exit
make FFI=0 c && ./BQN -p 2+2 || exit
dbqn test/precompiled.bqn "$1" "$PATH" '2+2' || exit
make f='-DNO_RT -DPRECOMP' c && ./BQN || exit