Files
newt/scripts/test

12 lines
182 B
Bash
Executable File

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