diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2019-03-07 16:55:31 -0500 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2019-03-07 16:55:31 -0500 |
| commit | 1e634a384ccc0ae57e0343369f7adb0b1b4b9875 (patch) | |
| tree | e7f4d834e39028b141f6c02e16f6eafb20d8320d /std/event/loop.zig | |
| parent | 5469e3e3c1ae060ee04f554499c852603eef3a5f (diff) | |
| parent | 2bb6825baa906936ff28b82029a4644ef0f73755 (diff) | |
| download | zig-1e634a384ccc0ae57e0343369f7adb0b1b4b9875.tar.gz zig-1e634a384ccc0ae57e0343369f7adb0b1b4b9875.zip | |
Merge branch 'glibc'
See #514
Diffstat (limited to 'std/event/loop.zig')
| -rw-r--r-- | std/event/loop.zig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/std/event/loop.zig b/std/event/loop.zig index a327d03792..d2804eeb27 100644 --- a/std/event/loop.zig +++ b/std/event/loop.zig @@ -864,7 +864,7 @@ pub const Loop = struct { test "std.event.Loop - basic" { // 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(); @@ -880,7 +880,7 @@ test "std.event.Loop - basic" { test "std.event.Loop - call" { // 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(); |
