diff options
author | Samson <16504129+sagudev@users.noreply.github.com> | 2023-09-30 18:28:46 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-30 16:28:46 +0000 |
commit | d74d51190a523d20775bf448eee408935d346e8b (patch) | |
tree | fe84d89dd236ce04b183f2e51c0fb54ad75c0fc2 /python | |
parent | ddc47aa56b2c59911b7fec018d7ae89bf2a77bee (diff) | |
download | servo-d74d51190a523d20775bf448eee408935d346e8b.tar.gz servo-d74d51190a523d20775bf448eee408935d346e8b.zip |
Update WebGPU CTS (#30454)
* Fix webgpu-cts import script
* Update webgpu-cts to https://github.com/gpuweb/cts/commit/f2b59e03621238d0d0fd6305be2c406ce3e45ac2
* Updated expectations
Diffstat (limited to 'python')
-rw-r--r-- | python/servo/testing_commands.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/python/servo/testing_commands.py b/python/servo/testing_commands.py index a0e60cb2e72..b31ed9c7be5 100644 --- a/python/servo/testing_commands.py +++ b/python/servo/testing_commands.py @@ -782,6 +782,8 @@ tests/wpt/mozilla/tests for Servo-only tests""" % reference_path) res = call(["npm", "run", "wpt"], cwd=clone_dir) if res != 0: return res + # https://github.com/gpuweb/cts/pull/2770 + delete(path.join(clone_dir, "out-wpt", "cts-chunked2sec.https.html")) cts_html = path.join(clone_dir, "out-wpt", "cts.https.html") # patch with open(cts_html, 'r') as file: |