Test pipes also when not running on Windows and Linux simultaneously
Fixes https://github.com/rust-lang/rust/pull/135635#pullrequestreview-2574184488.
This commit is contained in:
parent
ad28cbb423
commit
93d347d7d2
1 changed files with 1 additions and 1 deletions
|
@ -1,7 +1,7 @@
|
||||||
use crate::io::{Read, Write, pipe};
|
use crate::io::{Read, Write, pipe};
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
#[cfg(all(windows, unix, not(miri)))]
|
#[cfg(all(any(unix, windows), not(miri)))]
|
||||||
fn pipe_creation_clone_and_rw() {
|
fn pipe_creation_clone_and_rw() {
|
||||||
let (rx, tx) = pipe().unwrap();
|
let (rx, tx) = pipe().unwrap();
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue