Skip to content

Commit

Permalink
feat!: process _all_ WebGPU WPT files, remove chunked from metadata…
Browse files Browse the repository at this point in the history
… paths
  • Loading branch information
ErichDonGubler committed Dec 8, 2023
1 parent f3af30c commit f180643
Showing 1 changed file with 3 additions and 20 deletions.
23 changes: 3 additions & 20 deletions moz-webgpu-cts/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -140,17 +140,8 @@ fn run(cli: Cli) -> ExitCode {
};

let read_metadata = || -> Result<_, AlreadyReportedToCommandline> {
let webgpu_cts_meta_parent_dir = {
path!(
&gecko_checkout
| "testing"
| "web-platform"
| "mozilla"
| "meta"
| "webgpu"
| "chunked"
)
};
let webgpu_cts_meta_parent_dir =
{ path!(&gecko_checkout | "testing" | "web-platform" | "mozilla" | "meta" | "webgpu") };

let mut found_err = false;
let collected =
Expand Down Expand Up @@ -1206,15 +1197,7 @@ fn run(cli: Cli) -> ExitCode {
}
Subcommand::ReadTestVariants => {
let webgpu_cts_test_parent_dir = {
path!(
&gecko_checkout
| "testing"
| "web-platform"
| "mozilla"
| "tests"
| "webgpu"
| "chunked"
)
path!(&gecko_checkout | "testing" | "web-platform" | "mozilla" | "tests" | "webgpu")
};

let tests_by_path = match read_gecko_files_at(
Expand Down

0 comments on commit f180643

Please sign in to comment.