mirror of
https://github.com/servo/servo.git
synced 2025-08-06 22:15:33 +01:00
Auto merge of #22453 - servo:jdm-patch-19, r=jdm
Disable referrer-policy tests for frequent intermittent failures. This is hitting us really hard on the taskcluster WPT runs, so I'm going to disable them until we can investigate it properly. <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/22453) <!-- Reviewable:end -->
This commit is contained in:
commit
928fbc909f
2 changed files with 6 additions and 2 deletions
|
@ -489,7 +489,7 @@ def check_manifest_dirs(config_file, print_text=True):
|
||||||
p = parser.parse(lines)
|
p = parser.parse(lines)
|
||||||
paths = rec_parse(wpt_path("web-platform-tests"), p)
|
paths = rec_parse(wpt_path("web-platform-tests"), p)
|
||||||
for idx, path in enumerate(paths):
|
for idx, path in enumerate(paths):
|
||||||
if path.endswith("_mozilla") or path.endswith("_webgl"):
|
if '_mozilla' in path or '_webgl' in path:
|
||||||
continue
|
continue
|
||||||
if not os.path.isdir(path):
|
if not os.path.isdir(path):
|
||||||
yield(config_file, idx + 1, "Path in manifest was not found: {}".format(path))
|
yield(config_file, idx + 1, "Path in manifest was not found: {}".format(path))
|
||||||
|
|
|
@ -1,6 +1,10 @@
|
||||||
skip: true
|
skip: true
|
||||||
[_mozilla]
|
[_mozilla]
|
||||||
skip: false
|
skip: false
|
||||||
|
[mozilla]
|
||||||
|
skip: false
|
||||||
|
[referrer-policy]
|
||||||
|
skip: true
|
||||||
[_webgl]
|
[_webgl]
|
||||||
skip: false
|
skip: false
|
||||||
[2dcontext]
|
[2dcontext]
|
||||||
|
@ -102,7 +106,7 @@ skip: true
|
||||||
[quirks]
|
[quirks]
|
||||||
skip: false
|
skip: false
|
||||||
[referrer-policy]
|
[referrer-policy]
|
||||||
skip: false
|
skip: true
|
||||||
[resource-timing]
|
[resource-timing]
|
||||||
skip: false
|
skip: false
|
||||||
[subresource-integrity]
|
[subresource-integrity]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue