From d14256f9bae4f808c832318c6e9baa294313655d Mon Sep 17 00:00:00 2001 From: Nathan Binkert Date: Sun, 10 Jun 2007 13:57:48 -0700 Subject: the cmd argument is supposed to be an array of parameters, not one string --HG-- extra : convert_revision : dffdaa94a1f28f3709515a9eeed420552d8c7b22 --- configs/common/cpu2000.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'configs/common') 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 -- cgit v1.2.3