summaryrefslogtreecommitdiff
path: root/test/sys/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'test/sys/mod.rs')
-rw-r--r--test/sys/mod.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/sys/mod.rs b/test/sys/mod.rs
index 91c0aae7..768d4d30 100644
--- a/test/sys/mod.rs
+++ b/test/sys/mod.rs
@@ -15,17 +15,17 @@ mod test_aio;
mod test_mman;
#[cfg(target_os = "linux")]
mod test_signalfd;
-#[cfg(not(target_os = "redox"))]
+#[cfg(not(any(target_os = "redox", target_os = "haiku")))]
mod test_socket;
-#[cfg(not(target_os = "redox"))]
+#[cfg(not(any(target_os = "redox")))]
mod test_sockopt;
#[cfg(not(target_os = "redox"))]
mod test_select;
#[cfg(any(target_os = "android", target_os = "linux"))]
mod test_sysinfo;
-#[cfg(not(any(target_os = "redox", target_os = "fuchsia")))]
+#[cfg(not(any(target_os = "redox", target_os = "fuchsia", target_os = "haiku")))]
mod test_termios;
-#[cfg(not(any(target_os = "redox", target_os = "fuchsia")))]
+#[cfg(not(any(target_os = "redox", target_os = "fuchsia", target_os = "haiku")))]
mod test_ioctl;
mod test_wait;
mod test_uio;