Bug 1347686 - Remove e10s argument from mach xpcshell test runner r?jmaher draft
authorWilliam Lachance <wlachance@mozilla.com>
Wed, 15 Mar 2017 16:52:41 -0400
changeset 499516 7e9cab9289b2297e007649c487e5258b4ac69bcb
parent 499337 8c89d1991786625a64d868798281610872a2bc26
child 549373 755842b98a39152b547c0800b905c86cf487a624
push id49432
push userwlachance@mozilla.com
push dateWed, 15 Mar 2017 21:47:11 +0000
reviewersjmaher
bugs1347686
milestone55.0a1
Bug 1347686 - Remove e10s argument from mach xpcshell test runner r?jmaher MozReview-Commit-ID: E5TcRxVwMzS
testing/xpcshell/mach_test_package_commands.py
--- a/testing/xpcshell/mach_test_package_commands.py
+++ b/testing/xpcshell/mach_test_package_commands.py
@@ -17,17 +17,16 @@ from mach.decorators import (
     CommandProvider,
     Command,
 )
 
 
 def run_xpcshell(context, **kwargs):
     args = Namespace(**kwargs)
     args.appPath = args.appPath or os.path.dirname(context.firefox_bin)
-    args.e10s = context.mozharness_config.get('e10s', args.e10s)
     args.utility_path = context.bin_dir
     args.testingModulesDir = context.modules_dir
 
     if not args.xpcshell:
         args.xpcshell = os.path.join(args.appPath, 'xpcshell')
 
     if not args.pluginsPath:
         for path in context.ancestors(args.appPath, depth=2):