diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2019-10-30 21:29:45 -0400 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2019-10-30 21:29:45 -0400 |
| commit | 6a15e8a7a771bcbf2534cceecd77231344aafbf8 (patch) | |
| tree | 4b9f34412be146d95976e9427a8f898be8613a0b /lib/std/event | |
| parent | 33cc2044811e41a74e3112fc0abcc5dc6fd34836 (diff) | |
| download | zig-6a15e8a7a771bcbf2534cceecd77231344aafbf8.tar.gz zig-6a15e8a7a771bcbf2534cceecd77231344aafbf8.zip | |
add comments to disabled tests linking to the tracking issue
Diffstat (limited to 'lib/std/event')
| -rw-r--r-- | lib/std/event/channel.zig | 3 | ||||
| -rw-r--r-- | lib/std/event/group.zig | 2 | ||||
| -rw-r--r-- | lib/std/event/lock.zig | 3 |
3 files changed, 8 insertions, 0 deletions
diff --git a/lib/std/event/channel.zig b/lib/std/event/channel.zig index b46cca1261..f8539d5259 100644 --- a/lib/std/event/channel.zig +++ b/lib/std/event/channel.zig @@ -304,9 +304,12 @@ pub fn Channel(comptime T: type) type { } test "std.event.Channel" { + // https://github.com/ziglang/zig/issues/3563 if (builtin.os == .dragonfly) return error.SkipZigTest; + // https://github.com/ziglang/zig/issues/1908 if (builtin.single_threaded) return error.SkipZigTest; + // https://github.com/ziglang/zig/issues/3251 if (builtin.os == .freebsd) return error.SkipZigTest; diff --git a/lib/std/event/group.zig b/lib/std/event/group.zig index 6991fb2fa6..95715edcee 100644 --- a/lib/std/event/group.zig +++ b/lib/std/event/group.zig @@ -81,7 +81,9 @@ pub fn Group(comptime ReturnType: type) type { } test "std.event.Group" { + // https://github.com/ziglang/zig/issues/3563 if (builtin.os == .dragonfly) return error.SkipZigTest; + // https://github.com/ziglang/zig/issues/1908 if (builtin.single_threaded) return error.SkipZigTest; diff --git a/lib/std/event/lock.zig b/lib/std/event/lock.zig index f86afdbf65..57d295d6b6 100644 --- a/lib/std/event/lock.zig +++ b/lib/std/event/lock.zig @@ -116,9 +116,12 @@ pub const Lock = struct { }; test "std.event.Lock" { + // https://github.com/ziglang/zig/issues/3563 if (builtin.os == .dragonfly) return error.SkipZigTest; + // TODO https://github.com/ziglang/zig/issues/1908 if (builtin.single_threaded) return error.SkipZigTest; + // TODO https://github.com/ziglang/zig/issues/3251 if (builtin.os == .freebsd) return error.SkipZigTest; |
