Skip to content

Commit 9fe9432

Browse files
committed
Disable mknod and mknodat tests on DragonFly
1 parent 7be98a4 commit 9fe9432

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

test/test_stat.rs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,8 @@ fn test_mkdirat_fail() {
308308
}
309309

310310
#[test]
311-
#[cfg(not(any(target_os = "freebsd",
311+
#[cfg(not(any(target_os = "dragonfly",
312+
target_os = "freebsd",
312313
target_os = "ios",
313314
target_os = "macos",
314315
target_os = "redox")))]
@@ -325,7 +326,8 @@ fn test_mknod() {
325326
}
326327

327328
#[test]
328-
#[cfg(not(any(target_os = "freebsd",
329+
#[cfg(not(any(target_os = "dragonfly",
330+
target_os = "freebsd",
329331
target_os = "illumos",
330332
target_os = "ios",
331333
target_os = "macos",

0 commit comments

Comments
 (0)