add smoke tests

This commit is contained in:
2024-09-07 14:47:41 -07:00
parent 88d8c73e36
commit 7154f874bf
16 changed files with 31 additions and 37 deletions

11
scripts/test Executable file
View File

@@ -0,0 +1,11 @@
#!/bin/sh
for i in tests/black/*.newt; do
./build/exec/newt $i
if [ $? != "0" ]; then
echo FAIL $i
exit -1
fi
echo $?
done