aboutsummaryrefslogtreecommitdiff
path: root/wlauto/workloads/spec2000/__init__.py
diff options
context:
space:
mode:
authorSebastian Goscik <sebastian.goscik@live.co.uk>2016-02-16 15:38:48 +0000
committerSebastian Goscik <sebastian.goscik@live.co.uk>2016-02-19 15:27:18 +0000
commit001239dfe46ce9268c8263eba1e0f7a0ea1c8f2c (patch)
tree5457b47fb38fa890c375fe68313c314221d92219 /wlauto/workloads/spec2000/__init__.py
parent6f0de17201f84c0f5cab9fbf1e23676b59b446c6 (diff)
Fixed WA extensions for LinuxManager
Changed method calls to devlib naming
Diffstat (limited to 'wlauto/workloads/spec2000/__init__.py')
-rw-r--r--wlauto/workloads/spec2000/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/wlauto/workloads/spec2000/__init__.py b/wlauto/workloads/spec2000/__init__.py
index 1ff043d3..a9ea3aaf 100644
--- a/wlauto/workloads/spec2000/__init__.py
+++ b/wlauto/workloads/spec2000/__init__.py
@@ -253,7 +253,7 @@ class Spec2000(Workload):
if self.force_push_assets or not self.device.file_exists(datadir):
self.device.execute('mkdir -p {}'.format(datadir))
for datafile in bench.datafiles:
- self.device.push_file(datafile, self.device.path.join(datadir, os.path.basename(datafile)))
+ self.device.push(datafile, self.device.path.join(datadir, os.path.basename(datafile)))
if self.mode == 'speed':
cpus = [self._get_fastest_cpu().lower()]