diff options
-rwxr-xr-x | src/systemc/tests/verify.py | 2 |
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): |