Bug 919353 - kill b2g process on device with SIGABRT on timeout, r=ted

This commit is contained in:
Andrew Halberstadt 2013-10-28 11:43:39 -04:00
Родитель bc073c17e0
Коммит adb1db9897
1 изменённых файлов: 2 добавлений и 0 удалений

Просмотреть файл

@ -3,6 +3,7 @@ import os
import posixpath
import re
import shutil
import signal
import subprocess
import tempfile
import time
@ -198,6 +199,7 @@ class B2GRunner(RemoteRunner):
msg = "%s with no output" % msg
self.log.testFail(msg % (self.last_test, timeout))
self.dm.killProcess("/system/b2g/b2g", sig=signal.SIGABRT)
self.check_for_crashes()
def _reboot_device(self):