diff options
author | Yann Ylavic <ylavic@apache.org> | 2023-11-16 11:27:30 +0100 |
---|---|---|
committer | Yann Ylavic <ylavic@apache.org> | 2023-11-16 11:27:30 +0100 |
commit | 56fc7231aeeff4ef9113dedf5845bc389efe6032 (patch) | |
tree | bc467314490c2cfad25b24c7419ad5a7d100e9f6 | |
parent | Follow up to r1913815: credit Joe in CHANGES too. (diff) | |
download | apache2-56fc7231aeeff4ef9113dedf5845bc389efe6032.tar.xz apache2-56fc7231aeeff4ef9113dedf5845bc389efe6032.zip |
ci: Disable ASan's LeakSanitizer.
The tool sometimes/somehow crashes in CI, though I can't reproduce locally.
Possibly an issue with the gcc toolchain used there.. disable for now as it
makes the tests fail.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1913830 13f79535-47bb-0310-9956-ffa450edef68
-rwxr-xr-x | test/travis_run_linux.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/travis_run_linux.sh b/test/travis_run_linux.sh index 29b7e7c274..1465a304bd 100755 --- a/test/travis_run_linux.sh +++ b/test/travis_run_linux.sh @@ -108,7 +108,7 @@ if ! test -v SKIP_TESTING; then fi if test -v TEST_ASAN; then - export ASAN_OPTIONS="log_path=$PWD/asan.log" + export ASAN_OPTIONS="log_path=$PWD/asan.log:detect_leaks=0" fi # Try to keep all potential coredumps from all processes |