systemc: Make verify.py ignore an Info: message.
authorGabe Black <gabeblack@google.com>
Sat, 28 Jul 2018 08:13:23 +0000 (01:13 -0700)
committerGabe Black <gabeblack@google.com>
Thu, 20 Sep 2018 01:38:01 +0000 (01:38 +0000)
This message is about how to disable a warning about sc_bit being
deprecated.

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

src/systemc/tests/verify.py

index 0b903dea87e42341c0cd37399cf66bb349d8bd17..e98f2191af7af27a3b669bdecc32d5cf139349dd 100755 (executable)
@@ -198,7 +198,9 @@ class LogChecker(Checker):
         r'^\nInfo: /OSCI/SystemC: Simulation stopped by user.\n',
         r'^SystemC Simulation\n',
         warning_filt(571),
-        warning_filt(540)
+        warning_filt(540),
+        r'^\nInfo: \(I804\) /IEEE_Std_1666/deprecated: ' +
+        r'You can turn off(.*\n){7}'
     )
     test_filt = merge_filts(
         r'^Global frequency set at \d* ticks per second\n'