Skip to content

Commit 3d2c48e

Browse files
committed
disable some tests until coroutine rewrite is finished
1 parent 46242c4 commit 3d2c48e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

std/event/loop.zig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -864,7 +864,7 @@ pub const Loop = struct {
864864

865865
test "std.event.Loop - basic" {
866866
// 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;
868868

869869
var da = std.heap.DirectAllocator.init();
870870
defer da.deinit();
@@ -880,7 +880,7 @@ test "std.event.Loop - basic" {
880880

881881
test "std.event.Loop - call" {
882882
// 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;
884884

885885
var da = std.heap.DirectAllocator.init();
886886
defer da.deinit();

std/event/rwlock.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ pub const RwLock = struct {
213213

214214
test "std.event.RwLock" {
215215
// https://github.com/ziglang/zig/issues/1908
216-
if (builtin.single_threaded) return error.SkipZigTest;
216+
if (builtin.single_threaded or builtin.os != builtin.Os.linux) return error.SkipZigTest;
217217

218218
var da = std.heap.DirectAllocator.init();
219219
defer da.deinit();

0 commit comments

Comments
 (0)