diff options
author | Curtis Dunham <Curtis.Dunham@arm.com> | 2016-01-29 17:47:15 -0600 |
---|---|---|
committer | Curtis Dunham <Curtis.Dunham@arm.com> | 2016-01-29 17:47:15 -0600 |
commit | fe32b40269f41faa64db712334f1891d0e6d9a35 (patch) | |
tree | b04a1e0d90a020d26eef6f294ed942ca5679ca03 | |
parent | b99fea78a6b0db9dcf7133c302991b8a7a8f8538 (diff) | |
download | gem5-fe32b40269f41faa64db712334f1891d0e6d9a35.tar.xz |
ext: remove redundant parameter in example SST+gem5 test
The SST connector automatically adds --initialize-only to the gem5
"command line" (as it should); the config script doesn't need it.
-rw-r--r-- | ext/sst/tests/test6_arm_4c.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/sst/tests/test6_arm_4c.py b/ext/sst/tests/test6_arm_4c.py index e8683145e..bf2cb9ab8 100644 --- a/ext/sst/tests/test6_arm_4c.py +++ b/ext/sst/tests/test6_arm_4c.py @@ -90,7 +90,7 @@ GEM5.addParams({ "comp_debug" : getenv("GEM5_DEBUG"), "gem5DebugFlags" : getenv("M5_DEBUG"), "frequency" : clockRate, - "cmd" : "configs/example/fs.py --num-cpus 4 --disk-image=vexpress64-openembedded_minimal-armv8_20130623-376.img --root-device=/dev/sda2 --kernel=vmlinux.aarch64.20140821 --dtb-filename=vexpress.aarch64.20140821.dtb --mem-size=256MB --machine-type=VExpress_EMM64 --cpu-type=timing --external-memory-system=sst --initialize-only" + "cmd" : "configs/example/fs.py --num-cpus 4 --disk-image=vexpress64-openembedded_minimal-armv8_20130623-376.img --root-device=/dev/sda2 --kernel=vmlinux.aarch64.20140821 --dtb-filename=vexpress.aarch64.20140821.dtb --mem-size=256MB --machine-type=VExpress_EMM64 --cpu-type=timing --external-memory-system=sst" }) bus = sst.Component("membus", "memHierarchy.Bus") |