3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-05 17:14:07 +00:00

[TravisCI] Don't run Python regression tests under ASan for now.

The script that runs them doesn't propagate LD_PRELOAD and so the
tests fail.
This commit is contained in:
Dan Liew 2017-10-16 13:21:03 +01:00
parent a1b6316e2e
commit 7c99721b60

View file

@ -57,6 +57,11 @@ if [ "X${PYTHON_BINDINGS}" = "X1" ]; then
# FIXME: We need to build libz3 with a shared UBSan runtime for the bindings
# to work.
echo "FIXME: Skipping python binding tests when building with UBSan"
elif [ "X${ASAN_BUILD}" = "X1" ]; then
# FIXME: The `test_pyscripts.py` doesn't propagate LD_PRELOAD
# so under ASan the tests fail to run
# to work.
echo "FIXME: Skipping python binding tests when building with ASan"
else
run_non_native_binding ${PYTHON_EXECUTABLE} scripts/test_pyscripts.py "${Z3_LIB_DIR}" regressions/python/
fi