ci: "release only" tests are too slow to run with asan, at least for now

This commit is contained in:
Eric Wasylishen 2022-07-13 01:14:37 -06:00
parent 7f955a5247
commit 4c9227b39e
2 changed files with 6 additions and 2 deletions

View File

@ -38,7 +38,9 @@ cpack || exit 1
# run tests
./tests/tests || exit 1
./tests/tests [.] || exit 1 # run hidden tests (releaseonly)
if [ "$USE_ASAN" != "YES" ]; then
./tests/tests [.] || exit 1 # run hidden tests (releaseonly)
fi
# check rpath
readelf -d ./light/light

View File

@ -52,4 +52,6 @@ otool -L ./bsputil/bsputil
# run tests
./tests/tests || exit 1
./tests/tests [.] || exit 1 # run hidden tests (releaseonly)
if [ "$USE_ASAN" != "YES" ]; then
./tests/tests [.] || exit 1 # run hidden tests (releaseonly)
fi