Bug 710296 - turn on responsiveness for linux in Talos. r=parkouss

This commit is contained in:
Joel Maher 2016-02-03 13:15:04 -08:00
parent 589f40f0fc
commit 7948e370cf
3 changed files with 2 additions and 6 deletions

View File

@ -111,8 +111,6 @@ def create_parser(mach_interface=False):
add_arg('--develop', action='store_true', default=False,
help="useful for running tests on a developer machine."
" Doesn't upload to the graph servers.")
add_arg('--responsiveness', action='store_true',
help="turn on responsiveness collection")
add_arg("--cycles", type=int,
help="number of browser cycles to run")
add_arg("--tpmanifest",

View File

@ -191,7 +191,6 @@ DEFAULTS = dict(
# keys to generated self.config that are global overrides to tests
GLOBAL_OVERRIDES = (
'cycles',
'responsiveness',
'sps_profile',
'sps_profile_interval',
'sps_profile_entries',

View File

@ -91,9 +91,8 @@ class TTest(object):
if test_config['shutdown']:
global_counters['shutdown'] = []
if test_config.get('responsiveness') and \
platform.system() != "Linux":
# ignore responsiveness tests on linux until we fix
# Bug 710296
platform.system() != "Darwin":
# ignore osx for now as per bug 1245793
setup.env['MOZ_INSTRUMENT_EVENT_LOOP'] = '1'
setup.env['MOZ_INSTRUMENT_EVENT_LOOP_THRESHOLD'] = '20'
setup.env['MOZ_INSTRUMENT_EVENT_LOOP_INTERVAL'] = '10'