1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-03 17:01:21 +00:00
QB64-PE/tests/qbasic_tests.sh
Matthew Kilgore 9ee89d6ff4 Add QBasic tests
These tests use a variety of sample code (with some of the larger files
removed, so they are not complete!) and verifies that they all compile
successfully.
2022-04-28 23:00:07 -04:00

36 lines
986 B
Bash
Executable file

#!/bin/bash
# Arg 1: qb54 location
PREFIX="QBasic"
RESULTS_DIR="./tests/results/$PREFIX"
mkdir -p $RESULTS_DIR
QB64=$1
show_failure()
{
cat "$RESULTS_DIR/$1-compile_result.txt"
cat "$RESULTS_DIR/$1-compilelog.txt"
}
for sourceFile in $(find ./tests/qbasic_testcases/n54/ -name '*.bas') \
./tests/qbasic_testcases/open_gl/*.bas \
$(find ./tests/qbasic_testcases/pete -name '*.bas') \
$(find ./tests/qbasic_testcases/qb45com -name '*.bas') \
$(find ./tests/qbasic_testcases/thebob -name '*.bas') \
./tests/qbasic_testcases/misc/*.bas
do
test=$(basename $sourceFile .bas)
TESTCASE=$test
"$QB64" -x "$sourceFile" -o "./$RESULTS_DIR/$test-output.exe" 1>$RESULTS_DIR/$test-compile_result.txt
ERR=$?
cp ./internal/temp/compilelog.txt $RESULTS_DIR/$test-compilelog.txt
(exit $ERR)
assert_success_named "Compile" "Compilation Error:" show_failure $test
done