| author | |
| committer | |
| log | ec10e63f4945e81cfc5369a2c886ef0b7ae11c1b |
| tree | b97df9e51dd19fb1bf5358fd5881cbd9600b29bc |
| parent | 1ea650bb75e009bb37b5bd4e896a90e2a86f8583 |
See #102471 files changed, 4 insertions(+), 0 deletions(-)
lib/std/os/linux/io_uring.zig+4| ... | ... | @@ -1888,6 +1888,10 @@ test "timeout_link_chain1" { |
| 1888 | 1888 | if (cqe.res != -@as(i32, @enumToInt(linux.E.ALREADY)) and |
| 1889 | 1889 | cqe.res != -@as(i32, @enumToInt(linux.E.TIME))) |
| 1890 | 1890 | { |
| 1891 | if (cqe.res == -@as(i32, @enumToInt(linux.E.BADF))) { | |
| 1892 | // https://github.com/ziglang/zig/issues/10247 | |
| 1893 | return error.SkipZigTest; | |
| 1894 | } | |
| 1891 | 1895 | std.debug.print("Req 0x{x} got {d}\n", .{ cqe.user_data, cqe.res }); |
| 1892 | 1896 | try testing.expect(false); |
| 1893 | 1897 | } |