authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2018-11-15 10:02:12-05:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2018-11-15 10:02:12-05:00
logb8b36f3cce2d7391d3b648d7ea0c4104c0a8f0de
treea7d85a621c7cb611de0a31cae32cad0495667078
parent0c3bd0c3d16eb8c38593254ae54ef7fd22d8fa41
signature Commit is signed but in an unrecognized format.

disable windows test until coroutines rewrite lands

See #1363

1 files changed, 5 insertions(+), 0 deletions(-)

std/event/fs.zig+5
...@@ -1297,6 +1297,11 @@ pub fn Watch(comptime V: type) type {...@@ -1297,6 +1297,11 @@ pub fn Watch(comptime V: type) type {
1297const test_tmp_dir = "std_event_fs_test";1297const test_tmp_dir = "std_event_fs_test";
12981298
1299test "write a file, watch it, write it again" {1299test "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();
13021307