| ... | ... | @@ -864,7 +864,7 @@ pub const Loop = struct { |
| 864 | 864 | |
| 865 | 865 | test "std.event.Loop - basic" { |
| 866 | 866 | // https://github.com/ziglang/zig/issues/1908 |
| 867 | | if (builtin.single_threaded) return error.SkipZigTest; |
| 867 | if (builtin.single_threaded or builtin.os != builtin.Os.linux) return error.SkipZigTest; |
| 868 | 868 | |
| 869 | 869 | var da = std.heap.DirectAllocator.init(); |
| 870 | 870 | defer da.deinit(); |
| ... | ... | @@ -880,7 +880,7 @@ test "std.event.Loop - basic" { |
| 880 | 880 | |
| 881 | 881 | test "std.event.Loop - call" { |
| 882 | 882 | // https://github.com/ziglang/zig/issues/1908 |
| 883 | | if (builtin.single_threaded) return error.SkipZigTest; |
| 883 | if (builtin.single_threaded or builtin.os != builtin.Os.linux) return error.SkipZigTest; |
| 884 | 884 | |
| 885 | 885 | var da = std.heap.DirectAllocator.init(); |
| 886 | 886 | defer da.deinit(); |