mirror of
https://github.com/ARM-software/workload-automation.git
synced 2025-03-22 10:38:37 +00:00
LinuxDevice: Added supported eabi property.
Added property to linux device to return list of supported abis to be consistent with android devices. Currently only returns a list containing the primary abi.
This commit is contained in:
parent
f7e4232eaa
commit
eb239c65d0
@ -136,6 +136,10 @@ class BaseLinuxDevice(Device): # pylint: disable=abstract-method
|
|||||||
self._abi = val
|
self._abi = val
|
||||||
return self._abi
|
return self._abi
|
||||||
|
|
||||||
|
@property
|
||||||
|
def supported_abi(self):
|
||||||
|
return [self.abi]
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def online_cpus(self):
|
def online_cpus(self):
|
||||||
val = self.get_sysfile_value('/sys/devices/system/cpu/online')
|
val = self.get_sysfile_value('/sys/devices/system/cpu/online')
|
||||||
|
Loading…
x
Reference in New Issue
Block a user