tests: run testcommon

This commit is contained in:
Eric Wasylishen 2022-05-14 18:25:35 -06:00
parent 9c806d2d15
commit 73e9819e82
3 changed files with 8 additions and 0 deletions

View File

@ -40,6 +40,12 @@ if ( $? -eq $false ) {
throw "package failed"
}
.\common\Release\testcommon.exe
if ( $? -eq $false ) {
throw "testcommon failed"
}
.\light\Release\testlight.exe
if ( $? -eq $false ) {

View File

@ -39,6 +39,7 @@ make -j8 VERBOSE=1 testqbsp || exit 1
cpack || exit 1
# run tests
./common/testcommon || exit 1
./light/testlight || exit 1
./qbsp/testqbsp || exit 1

View File

@ -53,5 +53,6 @@ otool -L ./bspinfo/bspinfo
otool -L ./bsputil/bsputil
# run tests
./common/testcommon || exit 1
./light/testlight || exit 1
./qbsp/testqbsp || exit 1