Skip to content

Commit

Permalink
Test pipes also when not running on Windows and Linux simultaneously
Browse files Browse the repository at this point in the history
  • Loading branch information
tbu- authored and gitbot committed Feb 21, 2025
1 parent aac8826 commit 15e97c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion std/src/io/pipe/tests.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use crate::io::{Read, Write, pipe};

#[test]
#[cfg(all(windows, unix, not(miri)))]
#[cfg(all(any(unix, windows), not(miri)))]
fn pipe_creation_clone_and_rw() {
let (rx, tx) = pipe().unwrap();

Expand Down

0 comments on commit 15e97c4

Please sign in to comment.