Skip to content

Commit

Permalink
Auto merge of #124505 - Enselic:aux-bin-fix, r=jieyouxu
Browse files Browse the repository at this point in the history
aux-bin: Avoid old .so files from old tests; clean auxiliary dir root

Also fix the typo pointed out [here](https://github.com/rust-lang/rust/pull/123316/files#r1577081531).

Closes #124465
  • Loading branch information
bors committed Apr 29, 2024
2 parents c65b2dc + de3eff7 commit 9084601
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/tools/compiletest/src/runtest.rs
Expand Up @@ -2140,6 +2140,7 @@ impl<'test> TestCx<'test> {

if !self.props.aux_bins.is_empty() {
let aux_bin_dir = self.aux_bin_output_dir_name();
remove_and_create_dir_all(&aux_dir);
remove_and_create_dir_all(&aux_bin_dir);
}

Expand Down
2 changes: 1 addition & 1 deletion tests/ui/attributes/unix_sigpipe/unix_sigpipe-inherit.rs
Expand Up @@ -8,7 +8,7 @@

extern crate libc;

// By default the Rust runtime resets SIGPIPE to SIG_DFL before exec:ing child
// By default the Rust runtime resets SIGPIPE to SIG_DFL before exec'ing child
// processes so opt-out of that with `#[unix_sigpipe = "sig_dfl"]`. See
// https://github.com/rust-lang/rust/blob/bf4de3a874753bbee3323081c8b0c133444fed2d/library/std/src/sys/pal/unix/process/process_unix.rs#L359-L384
#[unix_sigpipe = "sig_dfl"]
Expand Down

0 comments on commit 9084601

Please sign in to comment.