1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-02-20 20:09:11 +00:00

dhrystone: fix busybox reference.

This commit is contained in:
Sergei Trofimov 2016-02-10 17:28:14 +00:00
parent a32cc0f213
commit 288aa764b3

View File

@ -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,