summaryrefslogtreecommitdiff
path: root/tests/long/50.vortex
diff options
context:
space:
mode:
Diffstat (limited to 'tests/long/50.vortex')
-rw-r--r--tests/long/50.vortex/test.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/tests/long/50.vortex/test.py b/tests/long/50.vortex/test.py
index f6d1e03df..bd57ef6e6 100644
--- a/tests/long/50.vortex/test.py
+++ b/tests/long/50.vortex/test.py
@@ -26,6 +26,8 @@
#
# Authors: Korey Sewell
-process = LiveProcess(executable = binpath('vortex'))
-process.cmd = 'vortex' + inputpath('smred.raw')
-root.system.cpu.workload = process
+m5.AddToPath('../configs/common')
+from cpu2000 import vortex
+
+workload = vortex('alpha', 'tru64', 'smred')
+root.system.cpu.workload = workload.makeLiveProcess()