tests: run testcommon
This commit is contained in:
parent
9c806d2d15
commit
73e9819e82
|
|
@ -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 ) {
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue