| author | |
| committer | |
| log | 57539a26b4b1a118c9947116f2873ea3c0ced3da |
| tree | be2cc5c4bc98ed9ec8c7dd485d34b84b4cea1e75 |
| parent | e02ec8f7f5485b4e95ca8089b25a1c76d85c5834 |
See #110741 files changed, 5 insertions(+), 2 deletions(-)
lib/std/os/test.zig+5-2| ... | ... | @@ -832,9 +832,12 @@ test "writev longer than IOV_MAX" { |
| 832 | 832 | } |
| 833 | 833 | |
| 834 | 834 | test "POSIX file locking with fcntl" { |
| 835 | if (native_os == .windows or native_os == .wasi) return error.SkipZigTest; | |
| 835 | if (native_os == .windows or native_os == .wasi) { | |
| 836 | // Not POSIX. | |
| 837 | return error.SkipZigTest; | |
| 838 | } | |
| 836 | 839 | |
| 837 | if (native_os == .linux) { | |
| 840 | if (true) { | |
| 838 | 841 | // https://github.com/ziglang/zig/issues/11074 |
| 839 | 842 | return error.SkipZigTest; |
| 840 | 843 | } |