Skip to content

Commit 190ef86

Browse files
committed
test: Auto-redact file hash
1 parent 875a25f commit 190ef86

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

crates/cargo-test-support/src/compare.rs

+2
Original file line numberDiff line numberDiff line change
@@ -174,6 +174,8 @@ fn add_common_redactions(subs: &mut snapbox::Redactions) {
174174
regex!("home/\\.cargo/registry/src/-(?<redacted>[a-z0-9]+)"),
175175
)
176176
.unwrap();
177+
subs.insert("[HASH]", regex!("/[a-z0-9\\-_]+-(?<redacted>[0-9a-f]{16})"))
178+
.unwrap();
177179
subs.insert("[HOST_TARGET]", rustc_host()).unwrap();
178180
if let Some(alt_target) = try_alternate() {
179181
subs.insert("[ALT_TARGET]", alt_target).unwrap();

0 commit comments

Comments
 (0)