We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 28a2baa commit e28c99dCopy full SHA for e28c99d
crates/cargo-test-support/src/compare.rs
@@ -185,6 +185,10 @@ static MIN_LITERAL_REDACTIONS: &[(&str, &str)] = &[
185
("[EXE]", std::env::consts::EXE_SUFFIX),
186
("[BROKEN_PIPE]", "Broken pipe (os error 32)"),
187
("[BROKEN_PIPE]", "The pipe is being closed. (os error 232)"),
188
+ // Unix message for exit status
189
+ ("[EXIT_STATUS]", "exit status"),
190
+ // Windows message for exit status
191
+ ("[EXIT_STATUS]", "exit code"),
192
];
193
static E2E_LITERAL_REDACTIONS: &[(&str, &str)] = &[
194
("[RUNNING]", " Running"),
0 commit comments