Skip to content

Commit f180643

Browse files
feat!: process _all_ WebGPU WPT files, remove chunked from metadata paths
1 parent f3af30c commit f180643

1 file changed

Lines changed: 3 additions & 20 deletions

File tree

moz-webgpu-cts/src/main.rs

Lines changed: 3 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -140,17 +140,8 @@ fn run(cli: Cli) -> ExitCode {
140140
};
141141

142142
let read_metadata = || -> Result<_, AlreadyReportedToCommandline> {
143-
let webgpu_cts_meta_parent_dir = {
144-
path!(
145-
&gecko_checkout
146-
| "testing"
147-
| "web-platform"
148-
| "mozilla"
149-
| "meta"
150-
| "webgpu"
151-
| "chunked"
152-
)
153-
};
143+
let webgpu_cts_meta_parent_dir =
144+
{ path!(&gecko_checkout | "testing" | "web-platform" | "mozilla" | "meta" | "webgpu") };
154145

155146
let mut found_err = false;
156147
let collected =
@@ -1206,15 +1197,7 @@ fn run(cli: Cli) -> ExitCode {
12061197
}
12071198
Subcommand::ReadTestVariants => {
12081199
let webgpu_cts_test_parent_dir = {
1209-
path!(
1210-
&gecko_checkout
1211-
| "testing"
1212-
| "web-platform"
1213-
| "mozilla"
1214-
| "tests"
1215-
| "webgpu"
1216-
| "chunked"
1217-
)
1200+
path!(&gecko_checkout | "testing" | "web-platform" | "mozilla" | "tests" | "webgpu")
12181201
};
12191202

12201203
let tests_by_path = match read_gecko_files_at(

0 commit comments

Comments
 (0)