summaryrefslogtreecommitdiff
path: root/test/test_net.rs
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_net.rs')
-rw-r--r--test/test_net.rs5
1 files changed, 4 insertions, 1 deletions
diff --git a/test/test_net.rs b/test/test_net.rs
index 40ecd6bb..78a09b6c 100644
--- a/test/test_net.rs
+++ b/test/test_net.rs
@@ -3,9 +3,12 @@ use nix::net::if_::*;
#[cfg(any(target_os = "android", target_os = "linux"))]
const LOOPBACK: &[u8] = b"lo";
-#[cfg(not(any(target_os = "android", target_os = "linux")))]
+#[cfg(not(any(target_os = "android", target_os = "linux", target_os = "haiku")))]
const LOOPBACK: &[u8] = b"lo0";
+#[cfg(target_os = "haiku")]
+const LOOPBACK: &[u8] = b"loop";
+
#[test]
fn test_if_nametoindex() {
assert!(if_nametoindex(LOOPBACK).is_ok());