We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0587c91 + 4c7f8f0 commit 746488eCopy full SHA for 746488e
2 files changed
moz-webgpu-cts/src/main.rs
@@ -290,11 +290,12 @@ fn run(cli: Cli) -> ExitCode {
290
291
fn cts_path(test_entry_path: &TestEntryPath<'_>) -> Option<String> {
292
test_entry_path
293
+ .test_entry
294
.variant
295
.as_ref()
296
.filter(|v| v.starts_with("?q=webgpu:"))
297
.map(|v| v.strip_prefix("?q=").unwrap().to_owned())
- .filter(|_q| test_entry_path.path.ends_with("cts.https.html"))
298
+ .filter(|_q| test_entry_path.spec_path.path.ends_with("cts.https.html"))
299
}
300
301
let mut file_props_by_file = IndexMap::<Utf8PathBuf, FileProps>::default();
0 commit comments