summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGabe Black <gabeblack@google.com>2018-12-12 00:17:46 -0800
committerGabe Black <gabeblack@google.com>2019-01-09 01:34:39 +0000
commit8c560b6c80e641a1937d9af98cb75588ec4eac05 (patch)
treeeccc63109a8b2e44f105d15e0aedfe16d75328d0
parent370b103d6d8f1aed0294525105ed0b9497b28521 (diff)
downloadgem5-8c560b6c80e641a1937d9af98cb75588ec4eac05.tar.xz
systemc: Add a dummy argv[0] when running the tests.
One TLM test will complain if argc isn't 1 or 2, assuming that that must mean that argc > 2. If it's 0 then the test will also complain and fail. We therefore need to pass it at least a dummy value in argv/argc. Change-Id: I5c64856f46d1459d7238e88ad8ba06933c7c38b8 Reviewed-on: https://gem5-review.googlesource.com/c/15065 Reviewed-by: Anthony Gutierrez <anthony.gutierrez@amd.com> Maintainer: Anthony Gutierrez <anthony.gutierrez@amd.com>
-rwxr-xr-xsrc/systemc/tests/config.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/systemc/tests/config.py b/src/systemc/tests/config.py
index 7f8d84057..ebdd5cd47 100755
--- a/src/systemc/tests/config.py
+++ b/src/systemc/tests/config.py
@@ -47,7 +47,7 @@ args = parser.parse_args()
if args.working_dir:
os.chdir(args.working_dir)
-kernel.sc_main();
+kernel.sc_main('gem5_systemc_test');
m5.instantiate(None)