Searched refs:ShellError (Results 1 – 13 of 13) sorted by relevance
/external/autotest/client/cros/faft/utils/ |
D | shell_wrapper.py | 11 class ShellError(Exception): class 54 raise ShellError('command %s failed (code: %d)' % 136 raise ShellError('command %s failed (code: %d)' % 148 raise ShellError('Somthing wrong on getting status: %r' % lines)
|
/external/autotest/client/virt/ |
D | aexpect.py | 226 class ShellError(Exception): class 237 class ShellTimeoutError(ShellError): 243 class ShellProcessTerminatedError(ShellError): 247 ShellError.__init__(self, cmd, output) 256 class ShellCmdError(ShellError): 260 ShellError.__init__(self, cmd, output) 268 class ShellStatusError(ShellError): 1235 raise ShellError(cmd, o) 1265 except ShellError:
|
D | virt_test_utils.py | 588 except aexpect.ShellError:
|
/external/autotest/client/tests/kvm/tests/ |
D | cdrom.py | 119 except aexpect.ShellError: 156 except aexpect.ShellError: 180 except aexpect.ShellError:
|
D | pci_hotplug.py | 192 except aexpect.ShellError, e:
|
/external/autotest/client/virt/tests/ |
D | iofuzz.py | 38 except aexpect.ShellError, e: 53 except aexpect.ShellError, e:
|
D | multicast.py | 28 except aexpect.ShellError, e:
|
D | netperf.py | 42 except aexpect.ShellError:
|
D | netstress_kill_guest.py | 69 except aexpect.ShellError:
|
/external/chromium-trace/catapult/devil/devil/utils/ |
D | mock_calls_test.py | 52 def ShellError(self): member in TestCaseWithAssertCallsTest 129 self.call.adb.Shell('echo hello'), self.ShellError()):
|
/external/chromium-trace/catapult/devil/devil/android/ |
D | device_utils_test.py | 161 def ShellError(self, output=None, status=1): member in DeviceUtilsTest 265 with self.assertCall(self.call.adb.Shell('ls /root'), self.ShellError()): 394 self.ShellError()): 467 (self.call.adb.Shell('test -d /fake/storage/path'), self.ShellError()), 470 (self.call.adb.Shell('test -d /fake/storage/path'), self.ShellError()), 879 with self.assertCall(self.call.adb.Shell(cmd), self.ShellError(output)): 886 with self.assertCall(self.call.adb.Shell(cmd), self.ShellError(output)): 907 with self.assertCall(self.call.adb.Shell(cmd), self.ShellError('')): 916 (self.call.adb.Shell(cmd), self.ShellError('', None)), 1531 self.ShellError()): [all …]
|
D | battery_utils_test.py | 73 def ShellError(self, output=None, status=1): member in BatteryUtilsTest 410 self.ShellError()), 412 self.ShellError())):
|
/external/autotest/server/cros/faft/utils/ |
D | mode_switcher.py | 586 except shell_wrapper.ShellError: 616 except shell_wrapper.ShellError:
|