1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-06-29 11:40:38 +00:00
QB64-PE/tests/run_c_tests.sh
2022-06-11 22:47:06 -04:00

19 lines
288 B
Bash
Executable file

#!/bin/bash
. ./tests/colors.sh
result=0
for test in buffer
do
./tests/exes/cpp/${test}_test || result=1
done
if [ "$result" != "1" ]; then
echo "====== FINAL RESULT: ${GREEN}PASS${RESET} ======"
else
echo "====== FINAL RESULT: ${RED}FAIL${RESET} ======"
fi
exit $result