Skip to content

Commit 224f287

Browse files
committedMar 7, 2025
Fix broken-pipe-no-ice to not depend on unstable anonymous_pipe feature
1 parent d47e5a3 commit 224f287

File tree

1 file changed

+4
-4
lines changed
  • tests/run-make/broken-pipe-no-ice

1 file changed

+4
-4
lines changed
 

‎tests/run-make/broken-pipe-no-ice/rmake.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@
1111
// Internal Compiler Error strangely, but it doesn't even go through normal diagnostic infra. Very
1212
// strange.
1313

14-
#![feature(anonymous_pipe)]
15-
1614
use std::io::Read;
1715
use std::process::{Command, Stdio};
1816

19-
use run_make_support::env_var;
17+
// FIXME(#137532): replace `os_pipe` dependency with std `anonymous_pipe` once that stabilizes and
18+
// reaches beta.
19+
use run_make_support::{env_var, os_pipe};
2020

2121
#[derive(Debug, PartialEq)]
2222
enum Binary {
@@ -25,7 +25,7 @@ enum Binary {
2525
}
2626

2727
fn check_broken_pipe_handled_gracefully(bin: Binary, mut cmd: Command) {
28-
let (reader, writer) = std::io::pipe().unwrap();
28+
let (reader, writer) = os_pipe::pipe().unwrap();
2929
drop(reader); // close read-end
3030
cmd.stdout(writer).stderr(Stdio::piped());
3131

0 commit comments

Comments
 (0)
Please sign in to comment.