From 288aa764b368f428cc0eb822333e9dc901c94ebf Mon Sep 17 00:00:00 2001 From: Sergei Trofimov Date: Wed, 10 Feb 2016 17:28:14 +0000 Subject: [PATCH] dhrystone: fix busybox reference. --- wlauto/workloads/dhrystone/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wlauto/workloads/dhrystone/__init__.py b/wlauto/workloads/dhrystone/__init__.py index e1ee9db7..8e60a10a 100644 --- a/wlauto/workloads/dhrystone/__init__.py +++ b/wlauto/workloads/dhrystone/__init__.py @@ -71,7 +71,7 @@ class Dhrystone(Workload): self.device_exe = self.device.install(host_exe) execution_mode = '-l {}'.format(self.mloops) if self.mloops else '-r {}'.format(self.duration) if self.taskset_mask: - taskset_string = 'busybox taskset 0x{:x} '.format(self.taskset_mask) + taskset_string = '{} taskset 0x{:x} '.format(self.device.busybox, self.taskset_mask) else: taskset_string = '' self.command = '{}{} {} -t {} -d {}'.format(taskset_string,