ci: don't fail on empty vis test suite

This commit is contained in:
Eric Wasylishen 2022-06-26 14:27:10 -06:00
parent 22f0def4b1
commit 95273ec189
3 changed files with 3 additions and 3 deletions

View File

@ -46,7 +46,7 @@ if ( $? -eq $false ) {
throw "testqbsp failed"
}
.\vis\Release\testvis.exe
.\vis\Release\testvis.exe --allow-running-no-tests
if ( $? -eq $false ) {
throw "testvis failed"

View File

@ -40,7 +40,7 @@ cpack || exit 1
./common/testcommon || exit 1
./light/testlight || exit 1
./qbsp/testqbsp || exit 1
./vis/testvis || exit 1
./vis/testvis --allow-running-no-tests || exit 1
# check rpath
readelf -d ./light/light

View File

@ -54,4 +54,4 @@ otool -L ./bsputil/bsputil
./common/testcommon || exit 1
./light/testlight || exit 1
./qbsp/testqbsp || exit 1
./vis/testvis || exit 1
./vis/testvis --allow-running-no-tests || exit 1