Skip to content

Commit 8fe6e74

Browse files
committed
Fix rustc tests
1 parent 250d083 commit 8fe6e74

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

scripts/test_rustc_tests.sh

+1-2
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,6 @@ rm -r tests/run-make/panic-abort-eh_frame # .eh_frame emitted with panic=abort
122122
# bugs in the test suite
123123
# ======================
124124
rm tests/ui/process/nofile-limit.rs # TODO some AArch64 linking issue
125-
rm tests/ui/attributes/unix_sigpipe/unix_sigpipe-inherit.rs # TODO some symbol not being found, but works fine when manually invoked
126125

127126
rm tests/ui/stdio-is-blocking.rs # really slow with unoptimized libstd
128127

@@ -154,7 +153,7 @@ index 9607ff02f96..b7d97caf9a2 100644
154153
let mut cmd = setup_common();
155154
- let target_rpath_dir = env::var_os("TARGET_RPATH_DIR").unwrap();
156155
- cmd.arg(format!("-L{}", target_rpath_dir.to_string_lossy()));
157-
Self { cmd }
156+
Self { cmd, stdin: None }
158157
}
159158
160159
EOF

0 commit comments

Comments
 (0)