Bug 1838693 Part 5: Update tests and test expectations. r=webgpu-reviewers,nical

Differential Revision: https://phabricator.services.mozilla.com/D190825
This commit is contained in:
Brad Werth 2023-10-16 15:32:01 +00:00
parent 038e9956c8
commit 9403801d41
2 changed files with 5 additions and 3 deletions

View File

@ -20,7 +20,11 @@
const buffer = device.createBuffer({ size: 0, usage: 0 });
const error = await device.popErrorScope();
isnot(error, null);
isnot(
error,
null,
"Attempt to createBuffer with size 0 and usage 0 should generate an error."
);
try {
await device.popErrorScope();

View File

@ -576,8 +576,6 @@
[cts.https.html?q=webgpu:api,operation,buffers,map_detach:while_mapped:*]
[:]
expected: FAIL
[cts.https.html?q=webgpu:api,operation,adapter,requestAdapter:requestAdapter:*]