diff options
author | Gabe Black <gabeblack@google.com> | 2018-09-14 22:03:29 -0700 |
---|---|---|
committer | Gabe Black <gabeblack@google.com> | 2018-10-09 21:52:21 +0000 |
commit | fad9488643dbf09e4d99b89b6b775fd6f1b24ba6 (patch) | |
tree | 88c6154d786a04bb242ada1326b2a3acd1f4e74f | |
parent | cb85067eee3fd7184b692f71af1016e52d44bb67 (diff) | |
download | gem5-fad9488643dbf09e4d99b89b6b775fd6f1b24ba6.tar.xz |
systemc: Ignore a gem5 warning about setting the stack size in verify.py.
This warning shouldn't make a test fail, but it's still useful to keep
around.
Change-Id: I9ebdbec804e11445edb82fa824ee0a6bce5943b0
Reviewed-on: https://gem5-review.googlesource.com/c/12812
Reviewed-by: Gabe Black <gabeblack@google.com>
Maintainer: Gabe Black <gabeblack@google.com>
-rwxr-xr-x | src/systemc/tests/verify.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/systemc/tests/verify.py b/src/systemc/tests/verify.py index fe165516e..5558634b9 100755 --- a/src/systemc/tests/verify.py +++ b/src/systemc/tests/verify.py @@ -241,6 +241,7 @@ class LogChecker(Checker): r'^Global frequency set at \d* ticks per second\n', r'^info: Entering event queue @ \d*\. Starting simulation\.\.\.\n', r'warn: [^(]+\([^)]*\)( \[with [^]]*\])? not implemented\.\n', + r'warn: Ignoring request to set stack size\.\n', info_filt(804), in_file_filt, ) |