Bug 1023935 - Use 'mozrunner-startup' instead of 'automation' as the test name during startup; r=ahal

Until we run the first test, we set self.last_test to a dummy value,
so if we time out, we'll end up with a vaguely understandable error:
TEST-UNEXPECTED-FAIL | <test_name> | application timed out after 330.0 seconds with no output

This makes the test name slightly more unique, so as to make TBPL's
matching against bugs less prone to false positives.
This commit is contained in:
Ed Morley 2014-08-06 17:16:08 +01:00
Родитель 88114c52f8
Коммит 1024685e6d
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -20,7 +20,7 @@ class BaseRunner(object):
The base runner class for all mozrunner objects, both local and remote.
"""
__metaclass__ = ABCMeta
last_test = 'automation'
last_test = 'mozrunner-startup'
process_handler = None
timeout = None
output_timeout = None