From a254a44f0efb90b90930f91711139939521950b2 Mon Sep 17 00:00:00 2001 From: Sergei Trofimov Date: Thu, 28 May 2015 09:08:46 +0100 Subject: [PATCH] adding abi property to LinuxDevice --- wlauto/common/linux/device.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/wlauto/common/linux/device.py b/wlauto/common/linux/device.py index 02836fc0..68012a80 100644 --- a/wlauto/common/linux/device.py +++ b/wlauto/common/linux/device.py @@ -853,6 +853,10 @@ class LinuxDevice(BaseLinuxDevice): self._is_rooted = False return self._is_rooted + @property + def abi(self): + return self.execute('uname -m') + def __init__(self, *args, **kwargs): super(LinuxDevice, self).__init__(*args, **kwargs) self.shell = None