From b2985cdf32d310e19f8972d7d5d61d9da5f65873 Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Sun, 25 Nov 2018 17:54:17 -0800 Subject: [PATCH] tests: Disable Address Sanitizer SIGSEGV handler for intentional SIGSEGV. --- tests/ui/terminal/main.at | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/ui/terminal/main.at b/tests/ui/terminal/main.at index a67447e48e..9da187fa45 100644 --- a/tests/ui/terminal/main.at +++ b/tests/ui/terminal/main.at @@ -38,6 +38,10 @@ AT_CHECK([pspp main.sps & sleep 1; kill $!; wait $!], [143], [], [ignore]) AT_CLEANUP AT_SETUP([SIGSEGV yields error report]) + +# This test intentionally causes SIGSEGV, so make Address Sanitizer ignore it. +ASAN_OPTIONS=$ASAN_OPTIONS:handle_segv=0; export ASAN_OPTIONS + AT_CHECK([[echo 'host command=["kill -SEGV $PPID"].' | pspp -O format=csv]], [139], [], [stderr]) -- 2.30.2