ci: "release only" tests are too slow to run with asan, at least for now
This commit is contained in:
parent
7f955a5247
commit
4c9227b39e
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue