mirror of
				https://github.com/ARM-software/workload-automation.git
				synced 2025-10-31 07:04:17 +00:00 
			
		
		
		
	workloads/dhrystone: Fix taskset
Was invoking busybox in a hardcoded way, and was not using self.target.busybox. Updated to use the correct version.
This commit is contained in:
		
				
					committed by
					
						 setrofim
						setrofim
					
				
			
			
				
	
			
			
			
						parent
						
							6df4b33d3f
						
					
				
				
					commit
					9b58662ae7
				
			| @@ -82,7 +82,8 @@ class Dhrystone(Workload): | ||||
|         else:  | ||||
|             execution_mode = '-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.target.busybox, | ||||
|                                                          self.taskset_mask) | ||||
|         else: | ||||
|             taskset_string = '' | ||||
|         self.command = '{}{} {} -t {} -d {}'.format(taskset_string, | ||||
|   | ||||
		Reference in New Issue
	
	Block a user