diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2019-03-09 01:15:18 -0500 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2019-03-09 01:15:18 -0500 |
| commit | a45807db22cf92167734d2055b836fa0aba8cf30 (patch) | |
| tree | 77166e6c7604a1f899db7c86b4e34e6bcd544b53 /std | |
| parent | 94e52dba85e4b81f5c4f2576c91df039604d06fb (diff) | |
| download | zig-a45807db22cf92167734d2055b836fa0aba8cf30.tar.gz zig-a45807db22cf92167734d2055b836fa0aba8cf30.zip | |
disable flaky event test until post coroutine rewrite
Diffstat (limited to 'std')
| -rw-r--r-- | std/event/future.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/std/event/future.zig b/std/event/future.zig index 0e1b928898..e288e1ba5a 100644 --- a/std/event/future.zig +++ b/std/event/future.zig @@ -86,7 +86,7 @@ pub fn Future(comptime T: type) type { test "std.event.Future" { // https://github.com/ziglang/zig/issues/1908 - if (builtin.single_threaded) return error.SkipZigTest; + if (builtin.single_threaded or builtin.os != builtin.Os.linux) return error.SkipZigTest; var da = std.heap.DirectAllocator.init(); defer da.deinit(); |
