From: Martin Quinson Date: Thu, 9 Mar 2017 17:01:00 +0000 (+0100) Subject: Ignore some more cruft coming from ASan X-Git-Tag: v3_15~163 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/b28ed03d61b64662a55af20fe2a31e7e4cab64c0 Ignore some more cruft coming from ASan --- 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)