From c5acc7e9bb0a99a423ce267d3315756290c34991 Mon Sep 17 00:00:00 2001 From: Martin Quinson Date: Mon, 26 Sep 2016 00:04:12 +0200 Subject: [PATCH] tesh: fix the regexp to ignore windows+java cruft --- tools/tesh/tesh.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/tesh/tesh.py b/tools/tesh/tesh.py index 8c62946e4a..3116078be6 100755 --- a/tools/tesh/tesh.py +++ b/tools/tesh/tesh.py @@ -400,7 +400,7 @@ if __name__ == '__main__': TeshState().ignore_regexps_common = [ re.compile("^profiling:"), re.compile(".*WARNING: ASan doesn\'t fully support"), - re.compile("Unable to clean temporary file C:")] + re.compile("Unable to clean temporary file C:.*")] if options.teshfile is None: f = FileReader(None) -- 2.20.1