There was an error while loading. Please reload this page.
1 parent 3daac50 commit a0e9740Copy full SHA for a0e9740
1 file changed
src/io.zig
@@ -2934,6 +2934,9 @@ test "io: group runs spawned tasks to completion" {
2934
}
2935
2936
test "io: batch awaitAsync executes operations linearly" {
2937
+ // file_read_streaming uses iovec which doesn't work on Windows regular files
2938
+ if (builtin.os.tag == .windows) return error.SkipZigTest;
2939
+
2940
const rt = try Runtime.init(std.testing.allocator, .{});
2941
defer rt.deinit();
2942
const io = rt.io();
0 commit comments