1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-09-20 03:14:45 +00:00
QB64-PE/tests/run_tests.sh

10 lines
227 B
Bash
Raw Normal View History

2022-04-28 23:34:11 +00:00
#!/bin/bash
result=0
./tests/assert.sh ./tests/compile_tests.sh ./qb64pe || result=1
./tests/assert.sh ./tests/qbasic_tests.sh ./qb64pe || result=1
2024-06-23 12:42:10 +00:00
./tests/assert.sh ./tests/format_tests.sh ./qb64pe || result=1
exit $result