From 1bcb434a74d3eb8f4d3cc18869d534f4dd8105ac Mon Sep 17 00:00:00 2001 From: Andrew Halberstadt Date: Fri, 1 Apr 2016 11:03:08 -0400 Subject: [PATCH] Bug 1243083 - Enable e10s by default when using chunk-finder, r=jgraham MozReview-Commit-ID: NlTGwdQ2nw --HG-- extra : rebase_source : 71587d5962eaedc79511c5c3884fabb65323560c --- testing/mach_commands.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/testing/mach_commands.py b/testing/mach_commands.py index 0de33336c6fe..4eb19a6618a4 100644 --- a/testing/mach_commands.py +++ b/testing/mach_commands.py @@ -714,11 +714,11 @@ def get_parser(argv=None): 'chunkByDir directories.', default=None) - parser.add_argument('--e10s', - action='store_true', + parser.add_argument('--disable-e10s', + action='store_false', dest='e10s', - help='Find test on chunk with electrolysis preferences enabled.', - default=False) + help='Find test on chunk with electrolysis preferences disabled.', + default=True) parser.add_argument('-p', '--platform', choices=['linux', 'linux64', 'mac', 'macosx64', 'win32', 'win64'],