diff options
author | Kevin Lim <ktlim@umich.edu> | 2006-11-10 12:28:23 -0500 |
---|---|---|
committer | Kevin Lim <ktlim@umich.edu> | 2006-11-10 12:28:23 -0500 |
commit | 8ccd99e3418937b20ff463a2d96e421855f4da44 (patch) | |
tree | cc06bc609064eaee41f7349f2fd407f51f8c5c90 /tests/long/60.bzip2 | |
parent | f593c8a8e2f10b38541efd78e026e29958fff31d (diff) | |
download | gem5-8ccd99e3418937b20ff463a2d96e421855f4da44.tar.xz |
Try to setup commands properly.
--HG--
extra : convert_revision : 9f4af3c5f52841b10e9f17c48470716703a1be67
Diffstat (limited to 'tests/long/60.bzip2')
-rw-r--r-- | tests/long/60.bzip2/test.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/long/60.bzip2/test.py b/tests/long/60.bzip2/test.py index 3f16efa09..e96d64656 100644 --- a/tests/long/60.bzip2/test.py +++ b/tests/long/60.bzip2/test.py @@ -26,5 +26,6 @@ # # Authors: Korey Sewell -root.system.cpu.workload = LiveProcess(cmd = 'bzip2 lgred.source', - executable = binpath('bzip2')) +process = LiveProcess(executable = binpath('bzip2')) +process.cmd = cmd = 'bzip2' + inputpath('bzip2', 'lgred.source') +root.system.cpu.workload = process |