summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Zoeller <rtzoeller@rtzoeller.com>2021-12-24 21:47:39 -0600
committerRyan Zoeller <rtzoeller@rtzoeller.com>2021-12-24 21:47:39 -0600
commit9fe943218106636c15a968f105feb0c4dbd69f06 (patch)
tree9578aa58e8df60dbe30e0952ead3c8368c985e7a
parent7be98a4379c57d91c6916c0a9817267ebf18c516 (diff)
downloadnix-9fe943218106636c15a968f105feb0c4dbd69f06.zip
Disable mknod and mknodat tests on DragonFly
-rw-r--r--test/test_stat.rs6
1 files changed, 4 insertions, 2 deletions
diff --git a/test/test_stat.rs b/test/test_stat.rs
index 33cf748d..8baa6555 100644
--- a/test/test_stat.rs
+++ b/test/test_stat.rs
@@ -308,7 +308,8 @@ fn test_mkdirat_fail() {
}
#[test]
-#[cfg(not(any(target_os = "freebsd",
+#[cfg(not(any(target_os = "dragonfly",
+ target_os = "freebsd",
target_os = "ios",
target_os = "macos",
target_os = "redox")))]
@@ -325,7 +326,8 @@ fn test_mknod() {
}
#[test]
-#[cfg(not(any(target_os = "freebsd",
+#[cfg(not(any(target_os = "dragonfly",
+ target_os = "freebsd",
target_os = "illumos",
target_os = "ios",
target_os = "macos",