From: Nathan Binkert Date: Sun, 10 Jun 2007 20:57:48 +0000 (-0700) Subject: the cmd argument is supposed to be an array of parameters, not one string X-Git-Tag: m5_2.0_beta4~362 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=d14256f9bae4f808c832318c6e9baa294313655d;p=gem5.git the cmd argument is supposed to be an array of parameters, not one string --HG-- extra : convert_revision : dffdaa94a1f28f3709515a9eeed420552d8c7b22 --- 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