File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -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 ();
Original file line number Diff line number Diff line change @@ -213,7 +213,7 @@ pub const RwLock = struct {
213
213
214
214
test "std.event.RwLock" {
215
215
// 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 ;
217
217
218
218
var da = std .heap .DirectAllocator .init ();
219
219
defer da .deinit ();
You can’t perform that action at this time.
0 commit comments