summaryrefslogtreecommitdiffstats
path: root/rteval/hackbench.py
diff options
context:
space:
mode:
Diffstat (limited to 'rteval/hackbench.py')
-rw-r--r--rteval/hackbench.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/rteval/hackbench.py b/rteval/hackbench.py
index c705be0..4083187 100644
--- a/rteval/hackbench.py
+++ b/rteval/hackbench.py
@@ -115,7 +115,8 @@ class Hackbench(load.Load):
os.close(err)
def genxml(self, x):
- x.taggedvalue('command_line', ' '.join(self.args), {'name':'hackbench', 'run': self.jobs and '1' or '0'})
+ x.taggedvalue('command_line', self.jobs and ' '.join(self.args) or None,
+ {'name':'hackbench', 'run': self.jobs and '1' or '0'})
def create(params = {}):
return Hackbench(params)