mirror of
https://github.com/servo/servo.git
synced 2025-09-06 21:18:20 +01:00
chore: Update wgpu to v25 (#36486)
Updates wgpu to v25 and remove some verbose logging from CTS (that also causes OOM). Testing: WebGPU CTS --------- Signed-off-by: sagudev <16504129+sagudev@users.noreply.github.com>
This commit is contained in:
parent
bd9242acfa
commit
05b5268061
19 changed files with 3833 additions and 2260 deletions
2
tests/wpt/webgpu/meta/MANIFEST.json
vendored
2
tests/wpt/webgpu/meta/MANIFEST.json
vendored
|
@ -582,7 +582,7 @@
|
|||
[]
|
||||
],
|
||||
"test_case_recorder.js": [
|
||||
"5b2a4e8b8ef259763c331bf7e4f8421d1eb43a70",
|
||||
"a37c61a4a6bae52828c0e2747e3eacd0e1e6f03d",
|
||||
[]
|
||||
]
|
||||
},
|
||||
|
|
5924
tests/wpt/webgpu/meta/webgpu/cts.https.html.ini
vendored
5924
tests/wpt/webgpu/meta/webgpu/cts.https.html.ini
vendored
File diff suppressed because it is too large
Load diff
|
@ -1,3 +1,3 @@
|
|||
[canvas_colorspace_rgba16float.https.html]
|
||||
expected:
|
||||
if os == "linux" and not debug: FAIL
|
||||
if os == "linux" and not debug: PASS
|
||||
|
|
|
@ -1,6 +1,3 @@
|
|||
[canvas_complex_rgba8unorm_copy.https.html]
|
||||
expected:
|
||||
if os == "win": TIMEOUT
|
||||
if os == "linux" and debug: TIMEOUT
|
||||
if os == "linux" and not debug: FAIL
|
||||
if os == "mac": TIMEOUT
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
[canvas_complex_rgba8unorm_store.https.html]
|
||||
expected:
|
||||
if os == "linux" and not debug: PASS
|
||||
if os == "linux" and not debug: [PASS, FAIL]
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
[canvas_composite_alpha_bgra8unorm_opaque_copy.https.html]
|
||||
expected:
|
||||
if os == "linux" and not debug: PASS
|
||||
if os == "linux" and not debug: [CRASH, PASS, FAIL]
|
||||
|
|
|
@ -1,2 +1,6 @@
|
|||
[canvas_composite_alpha_bgra8unorm_opaque_draw.https.html]
|
||||
expected: PASS
|
||||
expected:
|
||||
if os == "win": PASS
|
||||
if os == "linux" and debug: PASS
|
||||
if os == "linux" and not debug: [PASS, FAIL]
|
||||
if os == "mac": PASS
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
[canvas_composite_alpha_rgba8unorm_opaque_draw.https.html]
|
||||
expected:
|
||||
if os == "linux" and not debug: PASS
|
||||
if os == "linux" and not debug: [PASS, FAIL]
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
[canvas_composite_alpha_rgba8unorm_premultiplied_copy.https.html]
|
||||
expected:
|
||||
if os == "linux" and not debug: [PASS, FAIL]
|
||||
if os == "linux" and not debug: [CRASH, FAIL]
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
[canvas_composite_alpha_rgba8unorm_premultiplied_draw.https.html]
|
||||
expected:
|
||||
if os == "linux" and not debug: [CRASH, PASS]
|
||||
if os == "linux" and not debug: [CRASH, PASS, FAIL]
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
[canvas_image_rendering.https.html]
|
||||
expected:
|
||||
if os == "linux" and not debug: PASS
|
||||
if os == "linux" and not debug: [CRASH, PASS]
|
||||
|
|
|
@ -108,6 +108,7 @@ export class TestCaseRecorder {
|
|||
}
|
||||
|
||||
info(ex) {
|
||||
return;
|
||||
// We need this to use the lowest LogSeverity so it doesn't override the current severity for this test case.
|
||||
this.logImpl(LogSeverity.NotRun, 'INFO', ex);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue