From: Andrew Yourtchenko Date: Tue, 6 Apr 2021 14:24:53 +0000 (+0000) Subject: disable ASAN in the debug builds X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F04%2F31904%2F1;p=ci-management.git disable ASAN in the debug builds The move to unix sockets has broken ASAN fairly thoroughly, so disable it Change-Id: Icf3822c5927309f8574865008173a66019a3ed55 Signed-off-by: Andrew Yourtchenko --- diff --git a/jjb/scripts/vpp/debug-build.sh b/jjb/scripts/vpp/debug-build.sh index dba984f21..414a81169 100644 --- a/jjb/scripts/vpp/debug-build.sh +++ b/jjb/scripts/vpp/debug-build.sh @@ -30,7 +30,9 @@ echo "sha1sum of this script: ${0}" sha1sum $0 # run with ASAN on -export VPP_EXTRA_CMAKE_ARGS='-DVPP_ENABLE_SANITIZE_ADDR=ON' +# disable ASAN for now in the debug build - it's broken with PAPI +# in make test transitioning to unix sockets +# export VPP_EXTRA_CMAKE_ARGS='-DVPP_ENABLE_SANITIZE_ADDR=ON' make_build_test_debug() { if ! make UNATTENDED=yes install-dep ; then