aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbors-servo <servo-ops@mozilla.com>2021-01-25 20:10:18 -0500
committerGitHub <noreply@github.com>2021-01-25 20:10:18 -0500
commit877b5b65e97a92cca45f1385a5c145aa2c65ce09 (patch)
tree36f51ae32f24f6530f4cceee241a4fe69cb6435f
parent4d7b4d249fa90fb335cfdc9f0264747eda088808 (diff)
parent6dbcdf5ae72651d0cf5e6ff4fda43690e74b57ed (diff)
downloadservo-877b5b65e97a92cca45f1385a5c145aa2c65ce09.tar.gz
servo-877b5b65e97a92cca45f1385a5c145aa2c65ce09.zip
Auto merge of #28094 - servo:jdm-patch-48, r=jdm
Ensure webgpu test filtering works.
-rw-r--r--etc/taskcluster/decision_task.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/etc/taskcluster/decision_task.py b/etc/taskcluster/decision_task.py
index df978971304..cbd957ff91a 100644
--- a/etc/taskcluster/decision_task.py
+++ b/etc/taskcluster/decision_task.py
@@ -548,7 +548,7 @@ def macos_wpt():
repo_dir="repo",
total_chunks=20,
processes=8,
- run_webgpu=True,
+ run_webgpu=False,
)
@@ -621,7 +621,7 @@ def wpt_chunks(platform, make_chunk_task, build_task, total_chunks, processes,
if run_webgpu:
webgpu_script = """
time ./mach test-wpt _webgpu --release --processes $PROCESSES \
- --headless --log-raw test-webgpu.log \
+ --headless --log-raw test-webgpu.log --always-succeed \
--log-errorsummary webgpu-errorsummary.log \
| cat
./mach filter-intermittents \
@@ -630,7 +630,7 @@ def wpt_chunks(platform, make_chunk_task, build_task, total_chunks, processes,
--log-filteredsummary filtered-webgpu-errorsummary.log \
--tracker-api default \
--reporter-api default
- """
+ """ # pragma: no cover
else:
webgpu_script = ""