Bug 1370328 - force plugins off and jsgc_poisoning for talos. r=rwood

MozReview-Commit-ID: 1ZLTUyHyYCH
This commit is contained in:
Joel Maher 2017-06-06 09:57:06 -04:00
parent b128f216a3
commit 838fcff7e7
2 changed files with 4 additions and 0 deletions

View File

@ -179,6 +179,7 @@ DEFAULTS = dict(
'devtools.theme': "light",
'devtools.timeline.enabled': False,
'identity.fxaccounts.migrateToDevEdition': False,
'plugin.state.flash': 0,
'media.libavcodec.allow-obsolete': True
}
)

View File

@ -104,6 +104,9 @@ class TTest(object):
setup.env['MOZ_INSTRUMENT_EVENT_LOOP_INTERVAL'] = '10'
global_counters['responsiveness'] = []
setup.env['JSGC_DISABLE_POISONING'] = '1'
setup.env['MOZ_DISABLE_NONLOCAL_CONNECTIONS'] = '1'
# if using mitmproxy we must allow access to 'external' sites
if browser_config.get('mitmproxy', False):
LOG.info("Using mitmproxy so setting MOZ_DISABLE_NONLOCAL_CONNECTIONS to 0")