From 63754916c598a3be41171abb708dc6434f93c63e Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Thu, 6 Jun 2024 11:13:22 -0700 Subject: [PATCH] disable failing IoUring test tracked by #20212 --- lib/std/os/linux/IoUring.zig | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/std/os/linux/IoUring.zig b/lib/std/os/linux/IoUring.zig index 3bf3c077fc..e5e76b07fe 100644 --- a/lib/std/os/linux/IoUring.zig +++ b/lib/std/os/linux/IoUring.zig @@ -3503,6 +3503,10 @@ test "accept multishot" { } test "accept/connect/send_zc/recv" { + if (true) { + // https://github.com/ziglang/zig/issues/20212 + return error.SkipZigTest; + } try skipKernelLessThan(.{ .major = 6, .minor = 0, .patch = 0 }); var ring = IoUring.init(16, 0) catch |err| switch (err) {