We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c20202b commit 4841826Copy full SHA for 4841826
1 file changed
moz-webgpu-cts/src/shared.rs
@@ -351,8 +351,13 @@ impl<'a> TestPath<'a> {
351
.map(|stripped| (TestScope::FirefoxPrivate, stripped))
352
.or_else(|| {
353
test_url_path
354
- .strip_prefix('/')
+ .strip_prefix("/_webgpu/")
355
.map(|stripped| (TestScope::Public, stripped))
356
+ .or_else(|| {
357
+ test_url_path
358
+ .strip_prefix('/')
359
+ .map(|stripped| (TestScope::Public, stripped))
360
+ })
361
})
362
else {
363
return Err(err());
0 commit comments