summaryrefslogtreecommitdiffstats
path: root/jjb
diff options
context:
space:
mode:
authorAndrew Yourtchenko <ayourtch@gmail.com>2021-04-06 14:24:53 +0000
committerAndrew Yourtchenko <ayourtch@gmail.com>2021-04-06 14:25:52 +0000
commitc4e8e46c32d009445bcc064218597c01e94147bb (patch)
tree433c69ff6ad9deb9da4beb1b5acf31b67fd1ebbe /jjb
parent9e8e0b0580bef609415865804a12174b69fb9c3c (diff)
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 <ayourtch@gmail.com>
Diffstat (limited to 'jjb')
-rw-r--r--jjb/scripts/vpp/debug-build.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/jjb/scripts/vpp/debug-build.sh b/jjb/scripts/vpp/debug-build.sh
index dba984f2..414a8116 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