Commit b8b36f3cce

Andrew Kelley <superjoe30@gmail.com>
2018-11-15 16:02:12
disable windows test until coroutines rewrite lands
See #1363
1 parent 0c3bd0c
Changed files (1)
std
event
std/event/fs.zig
@@ -1297,6 +1297,11 @@ pub fn Watch(comptime V: type) type {
 const test_tmp_dir = "std_event_fs_test";
 
 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();
     defer da.deinit();