1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-09-19 16:45:06 +00:00
QB64-PE/tests/run_tests.sh
2024-06-26 21:52:58 +10:00

9 lines
227 B
Bash
Executable file

#!/bin/bash
result=0
./tests/assert.sh ./tests/compile_tests.sh ./qb64pe || result=1
./tests/assert.sh ./tests/qbasic_tests.sh ./qb64pe || result=1
./tests/assert.sh ./tests/format_tests.sh ./qb64pe || result=1
exit $result