Bug 1037318 - Log a test_start and test_end message for skipped tests in marionette.;r=jgraham

This commit is contained in:
Chris Manchester 2014-07-16 19:07:21 -04:00
Родитель 1aaa7148c1
Коммит dcb4f5d477
1 изменённых файлов: 4 добавлений и 3 удалений

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

@ -763,9 +763,10 @@ class BaseMarionetteTestRunner(object):
self.manifest_skipped_tests.append(test)
for test in self.manifest_skipped_tests:
self.logger.info('TEST-SKIP | %s | %s' % (
os.path.basename(test['path']),
test['disabled']))
self.logger.test_start(os.path.basename(test['path']))
self.logger.test_end(os.path.basename(test['path']),
'SKIP',
message=test['disabled'])
self.todo += 1
for i in target_tests: