1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-06 05:50:22 +00:00

compile_tests.sh does not display compilelog.txt

Due to a typo, compile_tests.sh was not displaying the compilelog.txt
contents on a test failure.
This commit is contained in:
Matthew Kilgore 2022-11-19 14:46:21 -05:00
parent 1438c882d2
commit 610c914d36

View file

@ -17,7 +17,7 @@ fi
show_failure()
{
cat "$RESULTS_DIR/$1-$2-compile_result.txt"
cat "$RESULTS_DIR/$2-compilelog.txt"
cat "$RESULTS_DIR/$1-$2-compilelog.txt"
}
show_incorrect_result()