File tree 1 file changed +4
-4
lines changed
tests/run-make/broken-pipe-no-ice
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 11
11
// Internal Compiler Error strangely, but it doesn't even go through normal diagnostic infra. Very
12
12
// strange.
13
13
14
- #![ feature( anonymous_pipe) ]
15
-
16
14
use std:: io:: Read ;
17
15
use std:: process:: { Command , Stdio } ;
18
16
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} ;
20
20
21
21
#[ derive( Debug , PartialEq ) ]
22
22
enum Binary {
@@ -25,7 +25,7 @@ enum Binary {
25
25
}
26
26
27
27
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 ( ) ;
29
29
drop ( reader) ; // close read-end
30
30
cmd. stdout ( writer) . stderr ( Stdio :: piped ( ) ) ;
31
31
You can’t perform that action at this time.
0 commit comments