Skip to content

Commit

Permalink
Merge pull request #101 from ErichDonGubler/test-runner-url-roundtrip
Browse files Browse the repository at this point in the history
test: cover round-trip of runner URL paths
  • Loading branch information
ErichDonGubler authored May 9, 2024
2 parents 011cd12 + 631f6ea commit b16d8f4
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion moz-webgpu-cts/src/shared.rs
Original file line number Diff line number Diff line change
Expand Up @@ -690,7 +690,16 @@ fn report_meta_match() {
TestPath::from_execution_report($test_run_path).unwrap(),
TestPath::from_fx_metadata_test(Path::new($rel_meta_path), $test_section_header)
.unwrap()
)
);
assert_eq!(
format!(
"/{}",
TestPath::from_execution_report($test_run_path)
.unwrap()
.runner_url_path()
),
$test_run_path,
);
};
}

Expand Down

0 comments on commit b16d8f4

Please sign in to comment.