From: Martin Quinson Date: Sun, 25 Sep 2016 22:04:12 +0000 (+0200) Subject: tesh: fix the regexp to ignore windows+java cruft X-Git-Tag: v3_14~396 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/c5acc7e9bb0a99a423ce267d3315756290c34991?ds=sidebyside tesh: fix the regexp to ignore windows+java cruft --- 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)