std.os.linux.IoUring: disable bind/listen/connect on s390x

https://github.com/ziglang/zig/issues/25956
This commit is contained in:
Alex Rønne Petersen 2025-11-17 17:58:38 +01:00
parent e179335bee
commit 508f676bb4
No known key found for this signature in database

View file

@ -4488,6 +4488,8 @@ test "copy_cqes with wrapping sq.cqes buffer" {
} }
test "bind/listen/connect" { test "bind/listen/connect" {
if (builtin.cpu.arch == .s390x) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/25956
var ring = IoUring.init(4, 0) catch |err| switch (err) { var ring = IoUring.init(4, 0) catch |err| switch (err) {
error.SystemOutdated => return error.SkipZigTest, error.SystemOutdated => return error.SkipZigTest,
error.PermissionDenied => return error.SkipZigTest, error.PermissionDenied => return error.SkipZigTest,