| ... | @@ -352,6 +352,7 @@ test "openDir" { | ... | @@ -352,6 +352,7 @@ test "openDir" { |
| 352 | | 352 | |
| 353 | test "accessAbsolute" { | 353 | test "accessAbsolute" { |
| 354 | if (native_os == .wasi) return error.SkipZigTest; | 354 | if (native_os == .wasi) return error.SkipZigTest; |
| | 355 | if (native_os == .openbsd) return error.SkipZigTest; |
| 355 | | 356 | |
| 356 | var tmp = tmpDir(.{}); | 357 | var tmp = tmpDir(.{}); |
| 357 | defer tmp.cleanup(); | 358 | defer tmp.cleanup(); |
| ... | @@ -364,6 +365,7 @@ test "accessAbsolute" { | ... | @@ -364,6 +365,7 @@ test "accessAbsolute" { |
| 364 | | 365 | |
| 365 | test "openDirAbsolute" { | 366 | test "openDirAbsolute" { |
| 366 | if (native_os == .wasi) return error.SkipZigTest; | 367 | if (native_os == .wasi) return error.SkipZigTest; |
| | 368 | if (native_os == .openbsd) return error.SkipZigTest; |
| 367 | | 369 | |
| 368 | var tmp = tmpDir(.{}); | 370 | var tmp = tmpDir(.{}); |
| 369 | defer tmp.cleanup(); | 371 | defer tmp.cleanup(); |
| ... | @@ -453,6 +455,7 @@ test "openDir non-cwd parent '..'" { | ... | @@ -453,6 +455,7 @@ test "openDir non-cwd parent '..'" { |
| 453 | | 455 | |
| 454 | test "readLinkAbsolute" { | 456 | test "readLinkAbsolute" { |
| 455 | if (native_os == .wasi) return error.SkipZigTest; | 457 | if (native_os == .wasi) return error.SkipZigTest; |
| | 458 | if (native_os == .openbsd) return error.SkipZigTest; |
| 456 | | 459 | |
| 457 | var tmp = tmpDir(.{}); | 460 | var tmp = tmpDir(.{}); |
| 458 | defer tmp.cleanup(); | 461 | defer tmp.cleanup(); |
| ... | @@ -1059,6 +1062,7 @@ test "rename" { | ... | @@ -1059,6 +1062,7 @@ test "rename" { |
| 1059 | | 1062 | |
| 1060 | test "renameAbsolute" { | 1063 | test "renameAbsolute" { |
| 1061 | if (native_os == .wasi) return error.SkipZigTest; | 1064 | if (native_os == .wasi) return error.SkipZigTest; |
| | 1065 | if (native_os == .openbsd) return error.SkipZigTest; |
| 1062 | | 1066 | |
| 1063 | var tmp_dir = tmpDir(.{}); | 1067 | var tmp_dir = tmpDir(.{}); |
| 1064 | defer tmp_dir.cleanup(); | 1068 | defer tmp_dir.cleanup(); |
| ... | @@ -1962,6 +1966,7 @@ test "'.' and '..' in fs.Dir functions" { | ... | @@ -1962,6 +1966,7 @@ test "'.' and '..' in fs.Dir functions" { |
| 1962 | | 1966 | |
| 1963 | test "'.' and '..' in absolute functions" { | 1967 | test "'.' and '..' in absolute functions" { |
| 1964 | if (native_os == .wasi) return error.SkipZigTest; | 1968 | if (native_os == .wasi) return error.SkipZigTest; |
| | 1969 | if (native_os == .openbsd) return error.SkipZigTest; |
| 1965 | | 1970 | |
| 1966 | var tmp = tmpDir(.{}); | 1971 | var tmp = tmpDir(.{}); |
| 1967 | defer tmp.cleanup(); | 1972 | defer tmp.cleanup(); |