disable ASAN in the debug builds 04/31904/1
authorAndrew Yourtchenko <ayourtch@gmail.com>
Tue, 6 Apr 2021 14:24:53 +0000 (14:24 +0000)
committerAndrew Yourtchenko <ayourtch@gmail.com>
Tue, 6 Apr 2021 14:25:52 +0000 (14:25 +0000)
The move to unix sockets has broken ASAN fairly thoroughly, so disable it

Change-Id: Icf3822c5927309f8574865008173a66019a3ed55
Signed-off-by: Andrew Yourtchenko <ayourtch@gmail.com>
jjb/scripts/vpp/debug-build.sh

index dba984f..414a811 100644 (file)
@@ -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