diff options
author | Nathan Binkert <binkertn@umich.edu> | 2007-06-10 13:57:48 -0700 |
---|---|---|
committer | Nathan Binkert <binkertn@umich.edu> | 2007-06-10 13:57:48 -0700 |
commit | d14256f9bae4f808c832318c6e9baa294313655d (patch) | |
tree | 6689237ae82c790271689acffea6cecd6dd90da4 /configs | |
parent | cd46796d5cd7fd87f511158350d7c98acfdaba3b (diff) | |
download | gem5-d14256f9bae4f808c832318c6e9baa294313655d.tar.xz |
the cmd argument is supposed to be an array of parameters, not one string
--HG--
extra : convert_revision : dffdaa94a1f28f3709515a9eeed420552d8c7b22
Diffstat (limited to 'configs')
-rw-r--r-- | configs/common/cpu2000.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configs/common/cpu2000.py b/configs/common/cpu2000.py index 18f6aedea..2f5844dc6 100644 --- a/configs/common/cpu2000.py +++ b/configs/common/cpu2000.py @@ -131,7 +131,7 @@ class Benchmark(object): def makeLiveProcessArgs(self, **kwargs): # set up default args for LiveProcess object process_args = {} - process_args['cmd'] = self.name + ' ' + ' '.join(self.args) + process_args['cmd'] = [ self.name ] + self.args process_args['executable'] = self.executable if self.stdin: process_args['input'] = self.stdin |