1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-06 05:50:22 +00:00
QB64-PE/tests/run_c_tests.sh

19 lines
288 B
Bash
Raw Normal View History

2022-06-08 03:57:12 +00:00
#!/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