Bug 967647 - fix interleaved output in b2g emulator unittests, r=jgriffin

This commit is contained in:
Andrew Halberstadt 2014-02-04 15:39:35 -05:00
Родитель b02c28b821
Коммит b859e094e9
1 изменённых файлов: 2 добавлений и 1 удалений

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

@ -190,6 +190,8 @@ class B2GRunner(RemoteRunner):
self.last_test = match[-1]
def on_timeout(self):
self.dm.killProcess('/system/b2g/b2g', sig=signal.SIGABRT)
msg = "%s | application timed out after %s seconds"
if self.timeout:
@ -199,7 +201,6 @@ 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):