systemc: Make verify.py ignore another warning.
authorGabe Black <gabeblack@google.com>
Sat, 28 Jul 2018 07:14:41 +0000 (00:14 -0700)
committerGabe Black <gabeblack@google.com>
Tue, 11 Sep 2018 21:54:51 +0000 (21:54 +0000)
Also make warning filters more general and easier to add by writing a
function to generate them.

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

src/systemc/tests/verify.py

index 062651d5de7084283e38efd0c2fc7e36c20fd4ec..0b903dea87e42341c0cd37399cf66bb349d8bd17 100755 (executable)
@@ -190,10 +190,15 @@ class LogChecker(Checker):
         filts = '|'.join(filts)
         return re.compile(filts, flags=re.MULTILINE)
 
+    def warning_filt(num):
+        return (r'^\nWarning: \(W{}\) .*\n(In file: .*\n)?'
+                r'(In process: [\w.]* @ .*\n)?').format(num)
+
     ref_filt = merge_filts(
         r'^\nInfo: /OSCI/SystemC: Simulation stopped by user.\n',
         r'^SystemC Simulation\n',
-        r'^\nWarning: .*\nIn file: .*\n'
+        warning_filt(571),
+        warning_filt(540)
     )
     test_filt = merge_filts(
         r'^Global frequency set at \d* ticks per second\n'