summaryrefslogtreecommitdiff
path: root/src/systemc/tests
diff options
context:
space:
mode:
authorGabe Black <gabeblack@google.com>2018-08-07 01:29:29 -0700
committerGabe Black <gabeblack@google.com>2018-09-20 01:39:47 +0000
commit049f7b8399a2721fea64274d89d44a8c3a54346b (patch)
tree9d9cc2e923a36c9cd1dc0bdd49f6d66ddb755844 /src/systemc/tests
parent0a0d4c644261cff371e05efa7e5a56efab4f82c8 (diff)
downloadgem5-049f7b8399a2721fea64274d89d44a8c3a54346b.tar.xz
systemc: Ignore a warning in the reference test outputs.
The warning is about deprecated sc_module constructors which don't take an sc_module_name. Change-Id: I2ef864a5bdac93eb8104a842179ffe45a8335085 Reviewed-on: https://gem5-review.googlesource.com/12068 Reviewed-by: Gabe Black <gabeblack@google.com> Maintainer: Gabe Black <gabeblack@google.com>
Diffstat (limited to 'src/systemc/tests')
-rwxr-xr-xsrc/systemc/tests/verify.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/systemc/tests/verify.py b/src/systemc/tests/verify.py
index 26183b5bb..6667b13a1 100755
--- a/src/systemc/tests/verify.py
+++ b/src/systemc/tests/verify.py
@@ -197,8 +197,9 @@ class LogChecker(Checker):
ref_filt = merge_filts(
r'^\nInfo: /OSCI/SystemC: Simulation stopped by user.\n',
r'^SystemC Simulation\n',
- warning_filt(571),
warning_filt(540),
+ warning_filt(569),
+ warning_filt(571),
r'^\nInfo: \(I804\) /IEEE_Std_1666/deprecated: ' +
r'You can turn off(.*\n){7}'
)