1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-05-12 12:00:13 +00:00

Don't archive test exes

This commit is contained in:
Matthew Kilgore 2022-05-06 16:59:43 -04:00
parent fcec53e55b
commit ba90a51f3e
2 changed files with 4 additions and 1 deletions

1
tests/.gitignore vendored
View file

@ -1,2 +1,3 @@
!*.bas
results/
exes/

View file

@ -4,8 +4,10 @@
PREFIX="QBasic"
RESULTS_DIR="./tests/results/$PREFIX"
EXES_DIR="./tests/exes/$PREFIX"
mkdir -p $RESULTS_DIR
mkdir -p $EXES_DIR
QB64=$1
@ -26,7 +28,7 @@ do
TESTCASE=$test
"$QB64" -x "$sourceFile" -o "./$RESULTS_DIR/$test-output.exe" 1>$RESULTS_DIR/$test-compile_result.txt
"$QB64" -x "$sourceFile" -o "./$EXES_DIR/$test-output.exe" 1>$RESULTS_DIR/$test-compile_result.txt
ERR=$?
cp ./internal/temp/compilelog.txt $RESULTS_DIR/$test-compilelog.txt