Files
newt/scripts/test
2024-11-10 21:13:18 -08:00

12 lines
167 B
Bash
Executable File

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