aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbors-servo <lbergstrom+bors@mozilla.com>2018-12-13 16:28:59 -0500
committerGitHub <noreply@github.com>2018-12-13 16:28:59 -0500
commit928fbc909f2448f54c7f9a1dffbced809ee4e2ea (patch)
treeba71844faef9c58b947bb82a1d9bcbfc95debe14
parenta03708eeb9ee8a5ffc712306d4ec0e90dae525b3 (diff)
parent8d6fda6ca5cfb9e3f9f95f91fc05e301ab14cee8 (diff)
downloadservo-928fbc909f2448f54c7f9a1dffbced809ee4e2ea.tar.gz
servo-928fbc909f2448f54c7f9a1dffbced809ee4e2ea.zip
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 -->
-rw-r--r--python/tidy/servo_tidy/tidy.py2
-rw-r--r--tests/wpt/include.ini6
2 files changed, 6 insertions, 2 deletions
diff --git a/python/tidy/servo_tidy/tidy.py b/python/tidy/servo_tidy/tidy.py
index 446db50feea..deb86e289c2 100644
--- a/python/tidy/servo_tidy/tidy.py
+++ b/python/tidy/servo_tidy/tidy.py
@@ -489,7 +489,7 @@ def check_manifest_dirs(config_file, print_text=True):
p = parser.parse(lines)
paths = rec_parse(wpt_path("web-platform-tests"), p)
for idx, path in enumerate(paths):
- if path.endswith("_mozilla") or path.endswith("_webgl"):
+ if '_mozilla' in path or '_webgl' in path:
continue
if not os.path.isdir(path):
yield(config_file, idx + 1, "Path in manifest was not found: {}".format(path))
diff --git a/tests/wpt/include.ini b/tests/wpt/include.ini
index 9219625bfae..5eed5ef7070 100644
--- a/tests/wpt/include.ini
+++ b/tests/wpt/include.ini
@@ -1,6 +1,10 @@
skip: true
[_mozilla]
skip: false
+ [mozilla]
+ skip: false
+ [referrer-policy]
+ skip: true
[_webgl]
skip: false
[2dcontext]
@@ -102,7 +106,7 @@ skip: true
[quirks]
skip: false
[referrer-policy]
- skip: false
+ skip: true
[resource-timing]
skip: false
[subresource-integrity]