From bb8f0f067f946c74f5bb1c09e39c42aa0e01ccf6 Mon Sep 17 00:00:00 2001 From: Arnaud Giersch Date: Thu, 25 Feb 2021 21:07:58 +0100 Subject: [PATCH] Update ASan suppressions for clang. --- tools/address_sanitizer.supp | 4 ++-- tools/tesh/tesh.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/address_sanitizer.supp b/tools/address_sanitizer.supp index d8380922db..4431358fc6 100644 --- a/tools/address_sanitizer.supp +++ b/tools/address_sanitizer.supp @@ -1,7 +1,7 @@ # Address sanitizer suppressions for stuff that we cannot control -# ignore libunwind cruft -#interceptor_via_lib:libunwind.so +# ignore libunwind cruft (seen with clang) +interceptor_via_lib:libunwind.so # __gnu_cxx::__to_xstring #interceptor_via_fun:__to_xstring diff --git a/tools/tesh/tesh.py b/tools/tesh/tesh.py index 9f0ef53145..a51dac83eb 100755 --- a/tools/tesh/tesh.py +++ b/tools/tesh/tesh.py @@ -545,7 +545,7 @@ if __name__ == '__main__': re.compile(r"Picked up JAVA_TOOL_OPTIONS: "), re.compile(r"Picked up _JAVA_OPTIONS: "), re.compile(r"==[0-9]+== ?WARNING: ASan doesn't fully support"), - re.compile(r"==[0-9]+== ?WARNING: ASan is ignoring requested __asan_handle_no_return: stack top:"), + re.compile(r"==[0-9]+== ?WARNING: ASan is ignoring requested __asan_handle_no_return: stack "), re.compile(r"False positive error reports may follow"), re.compile(r"For details see http://code\.google\.com/p/address-sanitizer/issues/detail\?id=189"), re.compile(r"For details see https://github\.com/google/sanitizers/issues/189"), -- 2.20.1