Skip to content

Commit f24917e

Browse files
committed
Bug 1894782 [wpt PR 46039] - Enabled subsuite support for chrome, a=testonly
Automatic update from web-platform-tests Enabled subsuite support for chrome (#46039) This is needed as we plan to run virtual tests with headless shell. Whether to run the virtual tests or not is controlled by the wrapper. -- wpt-commits: 53e94aacf78b637035b0740f67e6ac17b8adc34e wpt-pr: 46039 UltraBlame original commit: 04b9415653012247e97642466d31b63d38fbba9a
1 parent 6619c0f commit f24917e

File tree

1 file changed

+43
-0
lines changed
  • testing/web-platform/tests/tools/wptrunner/wptrunner/browsers

1 file changed

+43
-0
lines changed

testing/web-platform/tests/tools/wptrunner/wptrunner/browsers/chrome.py

+43
Original file line numberDiff line numberDiff line change
@@ -373,6 +373,7 @@
373373
test_type
374374
test_environment
375375
run_info_data
376+
subsuite
376377

377378
*
378379
*
@@ -409,6 +410,7 @@
409410
test_environment
410411
run_info_data
411412

413+
subsuite
412414
*
413415
*
414416
kwargs
@@ -1577,6 +1579,47 @@
15771579
arg
15781580
)
15791581

1582+
for
1583+
arg
1584+
in
1585+
subsuite
1586+
.
1587+
config
1588+
.
1589+
get
1590+
(
1591+
"
1592+
binary_args
1593+
"
1594+
[
1595+
]
1596+
)
1597+
:
1598+
1599+
if
1600+
arg
1601+
not
1602+
in
1603+
chrome_options
1604+
[
1605+
"
1606+
args
1607+
"
1608+
]
1609+
:
1610+
1611+
chrome_options
1612+
[
1613+
"
1614+
args
1615+
"
1616+
]
1617+
.
1618+
append
1619+
(
1620+
arg
1621+
)
1622+
15801623
#
15811624
Pass
15821625
the

0 commit comments

Comments
 (0)