diff options
author | bors-servo <servo-ops@mozilla.com> | 2020-08-04 14:12:45 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-04 14:12:45 -0400 |
commit | 9fbdbddb0c271db161ff5943cfc1c5c6122f633a (patch) | |
tree | b5c75029bd07a4935e6c06067d74b0aba4a97680 /python/tidy/servo_tidy | |
parent | 9c59dae708585fc4cb095f87a0161052421597f7 (diff) | |
parent | 75fb6ca589cb97eb933208914a6d2e08ff8dd447 (diff) | |
download | servo-9fbdbddb0c271db161ff5943cfc1c5c6122f633a.tar.gz servo-9fbdbddb0c271db161ff5943cfc1c5c6122f633a.zip |
Auto merge of #27402 - kunalmohan:webgpu-cts, r=jdm
Add a copy of WebGPU CTS to wpt.
<!-- Please describe your changes on the following line: -->
The test suite is generated from `glsl-dependent` branch in https://github.com/gpuweb/cts
We already have 6/44 tests passing and a number of subtests in other tests also pass.
r?@jdm
cc @kvark
---
<!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `___` with appropriate data: -->
- [X] `./mach build -d` does not report any errors
- [X] `./mach test-tidy` does not report any errors
- [X] These changes fix #27395 (GitHub issue number if applicable)
<!-- Either: -->
- [X] These changes do not require tests because we don't have tests for tests.
<!-- Also, please make sure that "Allow edits from maintainers" checkbox is checked, so that we can help you if you get stuck somewhere along the way.-->
<!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. -->
Diffstat (limited to 'python/tidy/servo_tidy')
-rw-r--r-- | python/tidy/servo_tidy/tidy.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/tidy/servo_tidy/tidy.py b/python/tidy/servo_tidy/tidy.py index 7501e07d802..a48fb4adc5d 100644 --- a/python/tidy/servo_tidy/tidy.py +++ b/python/tidy/servo_tidy/tidy.py @@ -516,7 +516,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 '_mozilla' in path or '_webgl' in path: + if '_mozilla' in path or '_webgl' in path or '_webgpu' in path: continue if not os.path.isdir(path): yield(config_file, idx + 1, "Path in manifest was not found: {}".format(path)) |