summaryrefslogtreecommitdiff
path: root/src/systemc/tests/verify.py
diff options
context:
space:
mode:
authorGabe Black <gabeblack@google.com>2018-07-28 01:49:52 -0700
committerGabe Black <gabeblack@google.com>2018-09-20 01:38:28 +0000
commite07c2d3c6e2f44dd448d1eceae4967abdf05768c (patch)
tree4d10cb7cf1cf6d05555aef0c1fc3110c4b94e598 /src/systemc/tests/verify.py
parent1039fb125e5d9be3dd426c36a34cab3036a17751 (diff)
downloadgem5-e07c2d3c6e2f44dd448d1eceae4967abdf05768c.tar.xz
systemc: Always set USE_SYSTEMC=1 when compiling with verify.py.
It doesn't make sense not to have systemc enabled when building the systemc regression tests. Change-Id: I23b81fd4d7cbd0dbf5efbea773d816296d6492be Reviewed-on: https://gem5-review.googlesource.com/12065 Reviewed-by: Gabe Black <gabeblack@google.com> Maintainer: Gabe Black <gabeblack@google.com>
Diffstat (limited to 'src/systemc/tests/verify.py')
-rwxr-xr-xsrc/systemc/tests/verify.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/systemc/tests/verify.py b/src/systemc/tests/verify.py
index e98f2191a..26183b5bb 100755
--- a/src/systemc/tests/verify.py
+++ b/src/systemc/tests/verify.py
@@ -121,7 +121,7 @@ class CompilePhase(TestPhaseBase):
def run(self, tests):
targets = list([test.full_path() for test in tests])
- scons_args = list(self.args) + targets
+ scons_args = [ 'USE_SYSTEMC=1' ] + list(self.args) + targets
scons(*scons_args)
class RunPhase(TestPhaseBase):