diff options
author | Nilay Vaish <nilay@cs.wisc.edu> | 2012-09-11 17:47:21 -0500 |
---|---|---|
committer | Nilay Vaish <nilay@cs.wisc.edu> | 2012-09-11 17:47:21 -0500 |
commit | 89a5ba1ef865d5eb58f2325eec5ebbec56b42b08 (patch) | |
tree | c1dc32c18aec64bc71ab94a314dfabd1bc1c4619 /configs/example | |
parent | 292d8252a4a03b7f2ef48f6f86311ac35020095d (diff) | |
download | gem5-89a5ba1ef865d5eb58f2325eec5ebbec56b42b08.tar.xz |
se.py: removes error in passing options to a binary
Diffstat (limited to 'configs/example')
-rw-r--r-- | configs/example/se.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configs/example/se.py b/configs/example/se.py index 1fefdc4fc..887e414ca 100644 --- a/configs/example/se.py +++ b/configs/example/se.py @@ -86,7 +86,7 @@ def get_processes(options): process.executable = wrkld if len(pargs) > idx: - process.cmd = [wrkld] + [" "] + [pargs[idx]] + process.cmd = [wrkld] + pargs[idx].split() else: process.cmd = [wrkld] |