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 e35cd55 commit d3573d0Copy full SHA for d3573d0
crates/cargo-test-support/src/compare.rs
@@ -201,6 +201,12 @@ static MIN_LITERAL_REDACTIONS: &[(&str, &str)] = &[
201
("[EXE]", std::env::consts::EXE_SUFFIX),
202
("[BROKEN_PIPE]", "Broken pipe (os error 32)"),
203
("[BROKEN_PIPE]", "The pipe is being closed. (os error 232)"),
204
+ // Unix message for an entity was not found
205
+ ("[NOT_FOUND]", "No such file or directory (os error 2)"),
206
+ // Windows message for an entity was not found
207
+ ("[NOT_FOUND]", "The system cannot find the file specified. (os error 2)"),
208
+ ("[NOT_FOUND]", "The system cannot find the path specified. (os error 3)"),
209
+ ("[NOT_FOUND]", "program not found"),
210
// Unix message for exit status
211
("[EXIT_STATUS]", "exit status"),
212
// Windows message for exit status
0 commit comments