diff -r dcd58ebfeae1 -r 86f44bedc44c configs/example/se.py --- a/configs/example/se.py Thu May 24 03:45:21 2012 -0700 +++ b/configs/example/se.py Fri May 25 00:52:13 2012 -0700 @@ -93,10 +93,11 @@ print >>sys.stderr, "Unable to find workload for %s: %s" % (buildEnv['TARGET_ISA'], app) sys.exit(1) elif options.cmd: - process = LiveProcess() - process.executable = options.cmd - process.cmd = [options.cmd] + options.options.split() - multiprocesses.append(process) + if options.cmd.split(';') == 1: + process = LiveProcess() + process.executable = options.cmd + process.cmd = [options.cmd] + options.options.split() + multiprocesses.append(process) else: print >> sys.stderr, "No workload specified. Exiting!\n" sys.exit(1) @@ -142,6 +143,7 @@ if errouts and errouts[smt_idx]: smt_process.errout = errouts[smt_idx] process += [smt_process, ] + multiprocesses.append(process) smt_idx += 1 numThreads = len(workloads)