Merge pull request #7543 from VOREStation/vplk-unit-tests-fail-checks

Make failing unit tests actually fail travis checks.
This commit is contained in:
Aronai Sieyes
2020-04-30 21:03:15 -04:00
committed by GitHub
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -101,7 +101,7 @@ turf/c_airblock(turf/other)
if(ATMOS_PASS_NO)
return BLOCKED
if(ATMOS_PASS_DENSITY)
if(density)
if(M.density)
return BLOCKED
if(ATMOS_PASS_PROC)
result |= M.c_airblock(other)
+2 -2
View File
@@ -33,6 +33,6 @@ fi
if [ $RUN -eq 1 ];
then
DreamDaemon $BASENAME.dmb -invisible -trusted -core 2>&1 | tee log.txt;
grep "All Unit Tests Passed" log.txt
grep "Caught 0 Runtimes" log.txt
grep "All Unit Tests Passed" log.txt || exit 1
grep "Caught 0 Runtimes" log.txt || exit 1
fi