From: Nikolaus Rath Date: Fri, 13 May 2016 22:20:17 +0000 (-0700) Subject: Add 'traceback' as suspicious test output pattern. X-Git-Tag: fuse-3.0.0pre0~42 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=92ec27d9824358a1fa904a0bec49b51e970aeea9;p=qemu-gpiodev%2Flibfuse.git Add 'traceback' as suspicious test output pattern. --- diff --git a/test/conftest.py b/test/conftest.py index d14350d..0da2f4b 100644 --- a/test/conftest.py +++ b/test/conftest.py @@ -35,7 +35,7 @@ def check_test_output(capfd): if count == 0 or count - cnt > 0: stderr = cp.sub('', stderr, count=count - cnt) - for pattern in ('exception', 'error', 'warning', 'fatal', + for pattern in ('exception', 'error', 'warning', 'fatal', 'traceback', 'fault', 'crash(?:ed)?', 'abort(?:ed)'): cp = re.compile(r'\b{}\b'.format(pattern), re.IGNORECASE | re.MULTILINE) hit = cp.search(stderr)