Bug 1387612 - Show Safe Browsing timeouts in Marionette logs. r=whimboo

MozReview-Commit-ID: 2GbcPnakEku

--HG--
extra : rebase_source : 6339c80fbb44d95eab653ac6681d8e8a6d42ab70
This commit is contained in:
Francois Marier 2017-08-04 16:57:49 -07:00
Родитель 00efaf7f30
Коммит efd8a780bd
1 изменённых файлов: 11 добавлений и 0 удалений

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

@ -20,6 +20,17 @@ class FirefoxUITestRunner(BaseMarionetteTestRunner):
# select the appropriate GeckoInstance
self.app = 'fxdesktop'
# low-noise log messages useful in tests
# TODO: should be moved to individual tests once bug 1386810
# is fixed
moz_log = ''
if 'MOZ_LOG' in os.environ:
moz_log = os.environ['MOZ_LOG']
if len(moz_log) > 0:
moz_log += ','
moz_log += 'UrlClassifierStreamUpdater:1'
os.environ['MOZ_LOG'] = moz_log
self.test_handlers = [MarionetteTestCase]
def duplicate_application(self, application_folder):