Skip to content

Commit a0e9740

Browse files
committed
Skip batch awaitAsync test on Windows
1 parent 3daac50 commit a0e9740

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

src/io.zig

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2934,6 +2934,9 @@ test "io: group runs spawned tasks to completion" {
29342934
}
29352935

29362936
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+
29372940
const rt = try Runtime.init(std.testing.allocator, .{});
29382941
defer rt.deinit();
29392942
const io = rt.io();

0 commit comments

Comments
 (0)