File tree 2 files changed +2
-1
lines changed
src/tools/compiletest/src
tests/ui/attributes/unix_sigpipe
2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -2140,6 +2140,7 @@ impl<'test> TestCx<'test> {
2140
2140
2141
2141
if !self . props . aux_bins . is_empty ( ) {
2142
2142
let aux_bin_dir = self . aux_bin_output_dir_name ( ) ;
2143
+ remove_and_create_dir_all ( & aux_dir) ;
2143
2144
remove_and_create_dir_all ( & aux_bin_dir) ;
2144
2145
}
2145
2146
Original file line number Diff line number Diff line change 8
8
9
9
extern crate libc;
10
10
11
- // By default the Rust runtime resets SIGPIPE to SIG_DFL before exec: ing child
11
+ // By default the Rust runtime resets SIGPIPE to SIG_DFL before exec' ing child
12
12
// processes so opt-out of that with `#[unix_sigpipe = "sig_dfl"]`. See
13
13
// https://github.com/rust-lang/rust/blob/bf4de3a874753bbee3323081c8b0c133444fed2d/library/std/src/sys/pal/unix/process/process_unix.rs#L359-L384
14
14
#[ unix_sigpipe = "sig_dfl" ]
You can’t perform that action at this time.
0 commit comments