ci: don't fail on empty vis test suite
This commit is contained in:
parent
22f0def4b1
commit
95273ec189
|
|
@ -46,7 +46,7 @@ if ( $? -eq $false ) {
|
||||||
throw "testqbsp failed"
|
throw "testqbsp failed"
|
||||||
}
|
}
|
||||||
|
|
||||||
.\vis\Release\testvis.exe
|
.\vis\Release\testvis.exe --allow-running-no-tests
|
||||||
|
|
||||||
if ( $? -eq $false ) {
|
if ( $? -eq $false ) {
|
||||||
throw "testvis failed"
|
throw "testvis failed"
|
||||||
|
|
|
||||||
|
|
@ -40,7 +40,7 @@ cpack || exit 1
|
||||||
./common/testcommon || exit 1
|
./common/testcommon || exit 1
|
||||||
./light/testlight || exit 1
|
./light/testlight || exit 1
|
||||||
./qbsp/testqbsp || exit 1
|
./qbsp/testqbsp || exit 1
|
||||||
./vis/testvis || exit 1
|
./vis/testvis --allow-running-no-tests || exit 1
|
||||||
|
|
||||||
# check rpath
|
# check rpath
|
||||||
readelf -d ./light/light
|
readelf -d ./light/light
|
||||||
|
|
|
||||||
|
|
@ -54,4 +54,4 @@ otool -L ./bsputil/bsputil
|
||||||
./common/testcommon || exit 1
|
./common/testcommon || exit 1
|
||||||
./light/testlight || exit 1
|
./light/testlight || exit 1
|
||||||
./qbsp/testqbsp || exit 1
|
./qbsp/testqbsp || exit 1
|
||||||
./vis/testvis || exit 1
|
./vis/testvis --allow-running-no-tests || exit 1
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue