Skip to content

Commit da7980b

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

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)