From 95273ec18971bb3ee15f0bbe8c81af2760baf40b Mon Sep 17 00:00:00 2001 From: Eric Wasylishen Date: Sun, 26 Jun 2022 14:27:10 -0600 Subject: [PATCH] ci: don't fail on empty vis test suite --- build-appveyor.ps1 | 2 +- build-linux-64.sh | 2 +- build-osx.sh | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/build-appveyor.ps1 b/build-appveyor.ps1 index 16e2966f..dbf184d1 100644 --- a/build-appveyor.ps1 +++ b/build-appveyor.ps1 @@ -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" diff --git a/build-linux-64.sh b/build-linux-64.sh index 3aa1d920..922b00cb 100755 --- a/build-linux-64.sh +++ b/build-linux-64.sh @@ -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 diff --git a/build-osx.sh b/build-osx.sh index 38c0090f..69bebc0a 100755 --- a/build-osx.sh +++ b/build-osx.sh @@ -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