Backed out changeset 8a0a2675fa02 (bug 1619512) for causing Android raptor failures CLOSED TREE

This commit is contained in:
Noemi Erli 2020-03-09 14:01:03 +02:00
Родитель 9748db36aa
Коммит 950c697c8c
1 изменённых файлов: 2 добавлений и 5 удалений

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

@ -324,11 +324,8 @@ either Raptor or browsertime."""
try:
self.run_test(test, timeout=int(test.get("page_timeout")))
except RuntimeError as e:
# Check for crashes before showing the timeout error.
self.check_for_crashes()
if self.runner.crashed == 0:
LOG.critical("Tests failed to finish! Application timed out.")
LOG.error(e)
LOG.critical("Tests failed to finish! Application timed out.")
LOG.error(e)
os.sys.exit(1)
finally:
self.run_test_teardown(test)