We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 875a25f commit 190ef86Copy full SHA for 190ef86
crates/cargo-test-support/src/compare.rs
@@ -174,6 +174,8 @@ fn add_common_redactions(subs: &mut snapbox::Redactions) {
174
regex!("home/\\.cargo/registry/src/-(?<redacted>[a-z0-9]+)"),
175
)
176
.unwrap();
177
+ subs.insert("[HASH]", regex!("/[a-z0-9\\-_]+-(?<redacted>[0-9a-f]{16})"))
178
+ .unwrap();
179
subs.insert("[HOST_TARGET]", rustc_host()).unwrap();
180
if let Some(alt_target) = try_alternate() {
181
subs.insert("[ALT_TARGET]", alt_target).unwrap();
0 commit comments