Skip to content

Commit 75f6f5f

Browse files
committed
fixup! Auto-redact dirty reason like 1719325877.527949100s, 61549498ns after last build at 1719325877.466399602s
1 parent 3480fe5 commit 75f6f5f

File tree

1 file changed

+2
-12
lines changed

1 file changed

+2
-12
lines changed

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

+2-12
Original file line numberDiff line numberDiff line change
@@ -206,20 +206,10 @@ fn add_common_redactions(subs: &mut snapbox::Redactions) {
206206
// "1719503592.218193216s, 1h 1s after last build at 1719499991.982681034s"
207207
// into "[DIRTY_REASON_NEW_TIME], [DIRTY_REASON_DIFF] after last build at [DIRTY_REASON_OLD_TIME]"
208208
subs.insert(
209-
"[DIRTY_REASON_NEW_TIME]",
210-
regex!(r"(?<redacted>[0-9]+(\.[0-9]+)?s), (\s?[0-9]+(\.[0-9]+)?(s|ns|h))+ after last build at ([0-9]+(\.[0-9]+)?s)"),
209+
"[TIME_DIFF_AFTER_LAST_BUILD]",
210+
regex!(r"(?<redacted>[0-9]+(\.[0-9]+)?s, (\s?[0-9]+(\.[0-9]+)?(s|ns|h))+ after last build at [0-9]+(\.[0-9]+)?s)"),
211211
)
212212
.unwrap();
213-
subs.insert(
214-
"[DIRTY_REASON_DIFF]",
215-
regex!(r"\[\w+\], (?<redacted>(\s?[0-9]+(\.[0-9]+)?(s|ns|h))+) after last build at ([0-9]+(\.[0-9]+)?s)"),
216-
)
217-
.unwrap();
218-
subs.insert(
219-
"[DIRTY_REASON_OLD_TIME]",
220-
regex!(r"\[\w+\], \[\w+\] after last build at (?<redacted>[0-9]+(\.[0-9]+)?s)"),
221-
)
222-
.unwrap();
223213
}
224214

225215
static MIN_LITERAL_REDACTIONS: &[(&str, &str)] = &[

0 commit comments

Comments
 (0)