Skip to content

Commit 64a9a9f

Browse files
tbu-gitbot
authored and
gitbot
committed
Test pipes also when not running on Windows and Linux simultaneously
Fixes rust-lang#135635 (review).
1 parent 6dbe017 commit 64a9a9f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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)