disable windows test until coroutines rewrite lands

See #1363
This commit is contained in:
Andrew Kelley 2018-11-15 10:02:12 -05:00
parent 0c3bd0c3d1
commit b8b36f3cce
No known key found for this signature in database
GPG Key ID: 4E7CD66038A4D47C

View File

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