Commit 0205ce4736
Changed files (1)
lib
std
os
linux
lib/std/os/linux/IoUring.zig
@@ -3835,6 +3835,11 @@ test "accept_direct" {
test "accept_multishot_direct" {
try skipKernelLessThan(.{ .major = 5, .minor = 19, .patch = 0 });
+ if (builtin.cpu.arch == .riscv64) {
+ // https://github.com/ziglang/zig/issues/25734
+ return error.SkipZigTest;
+ }
+
var ring = IoUring.init(1, 0) catch |err| switch (err) {
error.SystemOutdated => return error.SkipZigTest,
error.PermissionDenied => return error.SkipZigTest,