Skip to content

Commit 8722cdf

Browse files
authored
Unrolled build for rust-lang#136092
Rollup merge of rust-lang#136092 - tbu-:pr_io_pipe_test, r=joboet Test pipes also when not running on Windows and Linux simultaneously Fixes rust-lang#135635 (review). Based on top of rust-lang#135635 to avoid merge conflicts.
2 parents a1d7676 + 93d347d commit 8722cdf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/std/src/io/pipe/tests.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
use crate::io::{Read, Write, pipe};
22

33
#[test]
4-
#[cfg(all(windows, unix, not(miri)))]
4+
#[cfg(all(any(unix, windows), not(miri)))]
55
fn pipe_creation_clone_and_rw() {
66
let (rx, tx) = pipe().unwrap();
77

0 commit comments

Comments
 (0)