Skip to content

Commit

Permalink
test: cover round-trip of runner URL paths
Browse files Browse the repository at this point in the history
  • Loading branch information
ErichDonGubler committed May 9, 2024
1 parent 011cd12 commit 631f6ea
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 631f6ea

Please sign in to comment.