| ... | @@ -1297,6 +1297,11 @@ pub fn Watch(comptime V: type) type { | ... | @@ -1297,6 +1297,11 @@ pub fn Watch(comptime V: type) type { |
| 1297 | const test_tmp_dir = "std_event_fs_test"; | 1297 | const test_tmp_dir = "std_event_fs_test"; |
| 1298 | | 1298 | |
| 1299 | test "write a file, watch it, write it again" { | 1299 | test "write a file, watch it, write it again" { |
| | 1300 | if (builtin.os == builtin.Os.windows) { |
| | 1301 | // TODO this test is disabled on windows until the coroutine rewrite is finished. |
| | 1302 | // https://github.com/ziglang/zig/issues/1363 |
| | 1303 | return error.SkipZigTest; |
| | 1304 | } |
| 1300 | var da = std.heap.DirectAllocator.init(); | 1305 | var da = std.heap.DirectAllocator.init(); |
| 1301 | defer da.deinit(); | 1306 | defer da.deinit(); |
| 1302 | | 1307 | |