summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGabe Black <gabeblack@google.com>2018-07-28 01:13:23 -0700
committerGabe Black <gabeblack@google.com>2018-09-20 01:38:01 +0000
commit1039fb125e5d9be3dd426c36a34cab3036a17751 (patch)
treeb5ec5abf6ab45f55b6f405c1f03e71ad7580da80
parent1b5e80ac6e5ddcd13f26e5b59ab6c1cd9f24df1b (diff)
downloadgem5-1039fb125e5d9be3dd426c36a34cab3036a17751.tar.xz
systemc: Make verify.py ignore an Info: message.
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>
-rwxr-xr-xsrc/systemc/tests/verify.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/systemc/tests/verify.py b/src/systemc/tests/verify.py
index 0b903dea8..e98f2191a 100755
--- a/src/systemc/tests/verify.py
+++ b/src/systemc/tests/verify.py
@@ -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'