We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b63cee4 commit eb8e113Copy full SHA for eb8e113
src/libstd/sys/unix/fs.rs
@@ -364,7 +364,10 @@ mod tests {
364
use os;
365
use prelude::v1::*;
366
367
- #[cfg_attr(target_os = "freebsd", ignore)] // hmm, maybe pipes have a tiny buffer
+ #[cfg_attr(any(target_os = "freebsd",
368
+ target_os = "openbsd"),
369
+ ignore)]
370
+ // under some system, pipe(2) will return a bidrectionnal pipe
371
#[test]
372
fn test_file_desc() {
373
// Run this test with some pipes so we don't have to mess around with
0 commit comments