about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbjorn3 <17426603+bjorn3@users.noreply.github.com>2024-05-11 14:01:29 +0000
committerbjorn3 <17426603+bjorn3@users.noreply.github.com>2024-05-11 14:01:29 +0000
commit8fe6e74047491657239b04e29266422a1fceaacd (patch)
treeecac624d77fa01519c7c6d283b91f64881f767f5
parent250d0832a1c9497ed101260ee9e20b5bf3e18f60 (diff)
downloadrust-8fe6e74047491657239b04e29266422a1fceaacd.tar.gz
rust-8fe6e74047491657239b04e29266422a1fceaacd.zip
Fix rustc tests
-rwxr-xr-xscripts/test_rustc_tests.sh3
1 files changed, 1 insertions, 2 deletions
diff --git a/scripts/test_rustc_tests.sh b/scripts/test_rustc_tests.sh
index 2176f9d5ff3..689cda21643 100755
--- a/scripts/test_rustc_tests.sh
+++ b/scripts/test_rustc_tests.sh
@@ -122,7 +122,6 @@ rm -r tests/run-make/panic-abort-eh_frame # .eh_frame emitted with panic=abort
 # bugs in the test suite
 # ======================
 rm tests/ui/process/nofile-limit.rs # TODO some AArch64 linking issue
-rm tests/ui/attributes/unix_sigpipe/unix_sigpipe-inherit.rs # TODO some symbol not being found, but works fine when manually invoked
 
 rm tests/ui/stdio-is-blocking.rs # really slow with unoptimized libstd
 
@@ -154,7 +153,7 @@ index 9607ff02f96..b7d97caf9a2 100644
          let mut cmd = setup_common();
 -        let target_rpath_dir = env::var_os("TARGET_RPATH_DIR").unwrap();
 -        cmd.arg(format!("-L{}", target_rpath_dir.to_string_lossy()));
-         Self { cmd }
+         Self { cmd, stdin: None }
      }
 
 EOF