File tree 1 file changed +12
-0
lines changed
crates/cargo-test-support/src 1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -201,6 +201,18 @@ static MIN_LITERAL_REDACTIONS: &[(&str, &str)] = &[
201
201
( "[EXE]" , std:: env:: consts:: EXE_SUFFIX ) ,
202
202
( "[BROKEN_PIPE]" , "Broken pipe (os error 32)" ) ,
203
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
+ (
208
+ "[NOT_FOUND]" ,
209
+ "The system cannot find the file specified. (os error 2)" ,
210
+ ) ,
211
+ (
212
+ "[NOT_FOUND]" ,
213
+ "The system cannot find the path specified. (os error 3)" ,
214
+ ) ,
215
+ ( "[NOT_FOUND]" , "program not found" ) ,
204
216
// Unix message for exit status
205
217
( "[EXIT_STATUS]" , "exit status" ) ,
206
218
// Windows message for exit status
You can’t perform that action at this time.
0 commit comments