systemc: Teach verify.py to filter messages which start within a line.
authorGabe Black <gabeblack@google.com>
Thu, 6 Sep 2018 00:35:15 +0000 (17:35 -0700)
committerGabe Black <gabeblack@google.com>
Tue, 9 Oct 2018 21:37:38 +0000 (21:37 +0000)
It's possible for a test to generate a warning or error in the middle
of a line of output. The previous filter generator function would
create a filter which would only detect those messages which started
at the beginning of a new line.

Change-Id: I40372dc33049df84f3111e4d63a6619db97dcaa3
Reviewed-on: https://gem5-review.googlesource.com/c/12597
Reviewed-by: Gabe Black <gabeblack@google.com>
Maintainer: Gabe Black <gabeblack@google.com>

src/systemc/tests/verify.py

index 24a27afe1ebf666de18f0cf3a225950e771bc92e..19cca05609fea04b4f850d74df5c6945911eff96 100755 (executable)
@@ -192,7 +192,7 @@ class Checker(object):
             return test_f.read() == ref_f.read()
 
 def tagged_filt(tag, num):
-    return (r'^\n{}: \({}{}\) .*\n(In file: .*\n)?'
+    return (r'\n{}: \({}{}\) .*\n(In file: .*\n)?'
             r'(In process: [\w.]* @ .*\n)?').format(tag, tag[0], num)
 
 def error_filt(num):