diff options
-rwxr-xr-x | build/android/buildbot/bb_device_status_check.py | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/build/android/buildbot/bb_device_status_check.py b/build/android/buildbot/bb_device_status_check.py index d01fcaa..67020d6 100755 --- a/build/android/buildbot/bb_device_status_check.py +++ b/build/android/buildbot/bb_device_status_check.py @@ -256,8 +256,11 @@ def RestartUsb(): def KillAllAdb(): def GetAllAdb(): for p in psutil.process_iter(): - if 'adb' in p.name: - yield p + try: + if 'adb' in p.name: + yield p + except psutil.error.NoSuchProcess: + pass for sig in [signal.SIGTERM, signal.SIGQUIT, signal.SIGKILL]: for p in GetAllAdb(): @@ -268,7 +271,10 @@ def KillAllAdb(): except psutil.error.NoSuchProcess: pass for p in GetAllAdb(): - print 'Unable to kill %d (%s [%s])' % (p.pid, p.name, ' '.join(p.cmdline)) + try: + print 'Unable to kill %d (%s [%s])' % (p.pid, p.name, ' '.join(p.cmdline)) + except psutil.error.NoSuchProcess: + pass def main(): |