From b28ed03d61b64662a55af20fe2a31e7e4cab64c0 Mon Sep 17 00:00:00 2001 From: Martin Quinson Date: Thu, 9 Mar 2017 18:01:00 +0100 Subject: [PATCH] Ignore some more cruft coming from ASan --- tools/tesh/tesh.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/tools/tesh/tesh.py b/tools/tesh/tesh.py index 1985a5dbb0..db3a4c9520 100755 --- a/tools/tesh/tesh.py +++ b/tools/tesh/tesh.py @@ -428,7 +428,12 @@ if __name__ == '__main__': re.compile(".*WARNING: ASan doesn\'t fully support"), re.compile("Unable to clean temporary file C:.*"), re.compile(".*Configuration change: Set \'contexts/"), - re.compile(".*Picked up JAVA_TOOL_OPTIONS.*")] + re.compile(".*Picked up JAVA_TOOL_OPTIONS.*"), + + re.compile("==WARNING: ASan is ignoring requested __asan_handle_no_return: stack top:"), + re.compile("False positive error reports may follow"), + re.compile("For details see http://code.google.com/p/address-sanitizer/issues/detail?id=189"), + ] if options.teshfile is None: f = FileReader(None) -- 2.20.1