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 680ff30 commit 6bdd9f2Copy full SHA for 6bdd9f2
test/sys/test_aio_drop.rs
@@ -1,6 +1,7 @@
1
extern crate nix;
2
extern crate tempfile;
3
4
+#[cfg(not(target_os = "openbsd"))]
5
use nix::sys::aio::*;
6
use nix::sys::signal::*;
7
use std::os::unix::io::AsRawFd;
@@ -11,7 +12,8 @@ use tempfile::tempfile;
11
12
// the AIO subsystem and causes subsequent tests to fail
13
#[test]
14
#[should_panic(expected = "Dropped an in-progress AioCb")]
-#[cfg(not(target_env = "musl"))]
15
+#[cfg(not(any(target_env = "musl",
16
+ target_os = "openbsd")))]
17
fn test_drop() {
18
const WBUF: &[u8] = b"CDEF";
19
0 commit comments