Files
newt/scripts/test
2024-09-07 17:24:25 -07:00

12 lines
141 B
Bash
Executable File

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