mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-23 21:01:08 +00:00
Bug 1753772 - Add xorigin-tests to android test runner. r=jmaher
Differential Revision: https://phabricator.services.mozilla.com/D138373
This commit is contained in:
parent
fa1559c5bf
commit
2f5398973b
@ -68,6 +68,15 @@ class AndroidEmulatorTest(
|
||||
"help": "Number of this chunk",
|
||||
},
|
||||
],
|
||||
[
|
||||
["--enable-xorigin-tests"],
|
||||
{
|
||||
"action": "store_true",
|
||||
"dest": "enable_xorigin_tests",
|
||||
"default": False,
|
||||
"help": "Run tests in a cross origin iframe.",
|
||||
},
|
||||
],
|
||||
[
|
||||
["--gpu-required"],
|
||||
{
|
||||
@ -305,6 +314,8 @@ class AndroidEmulatorTest(
|
||||
|
||||
if self.enable_fission:
|
||||
cmd.extend(["--enable-fission"])
|
||||
if c.get("enable_xorigin_tests"):
|
||||
cmd.extend(["--enable-xorigin-tests"])
|
||||
|
||||
try_options, try_tests = self.try_args(self.test_suite)
|
||||
cmd.extend(try_options)
|
||||
|
Loading…
Reference in New Issue
Block a user