1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-05-12 12:00:13 +00:00
QB64-PE/tests/run_tests.sh
Roland Heyder 2ec897b75d Step 10: Update remaining stuff
- checks all remaining occurrences of the term 'qb64', some remain untouched, some are renamed according to context
- also added new logo for README.md
- this step does finalize the 'Phoenix Edition' re-branding
2022-08-12 02:54:12 +02:00

9 lines
164 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
exit $result