mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 17:44:08 +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:
parent
a1b6316e2e
commit
7c99721b60
|
@ -57,6 +57,11 @@ if [ "X${PYTHON_BINDINGS}" = "X1" ]; then
|
||||||
# FIXME: We need to build libz3 with a shared UBSan runtime for the bindings
|
# FIXME: We need to build libz3 with a shared UBSan runtime for the bindings
|
||||||
# to work.
|
# to work.
|
||||||
echo "FIXME: Skipping python binding tests when building with UBSan"
|
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
|
else
|
||||||
run_non_native_binding ${PYTHON_EXECUTABLE} scripts/test_pyscripts.py "${Z3_LIB_DIR}" regressions/python/
|
run_non_native_binding ${PYTHON_EXECUTABLE} scripts/test_pyscripts.py "${Z3_LIB_DIR}" regressions/python/
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in a new issue