disable failing IoUring test

tracked by #20212
This commit is contained in:
Andrew Kelley 2024-06-06 11:13:22 -07:00
parent 7a29161e8e
commit 404a057f77

View File

@ -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) {