aboutsummaryrefslogtreecommitdiff
path: root/lib/std/atomic/queue.zig
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2019-10-30 21:29:45 -0400
committerAndrew Kelley <andrew@ziglang.org>2019-10-30 21:29:45 -0400
commit6a15e8a7a771bcbf2534cceecd77231344aafbf8 (patch)
tree4b9f34412be146d95976e9427a8f898be8613a0b /lib/std/atomic/queue.zig
parent33cc2044811e41a74e3112fc0abcc5dc6fd34836 (diff)
downloadzig-6a15e8a7a771bcbf2534cceecd77231344aafbf8.tar.gz
zig-6a15e8a7a771bcbf2534cceecd77231344aafbf8.zip
add comments to disabled tests linking to the tracking issue
Diffstat (limited to 'lib/std/atomic/queue.zig')
-rw-r--r--lib/std/atomic/queue.zig2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/std/atomic/queue.zig b/lib/std/atomic/queue.zig
index a9d7649829..6aac3246c7 100644
--- a/lib/std/atomic/queue.zig
+++ b/lib/std/atomic/queue.zig
@@ -152,7 +152,9 @@ const puts_per_thread = 500;
const put_thread_count = 3;
test "std.atomic.Queue" {
+ // https://github.com/ziglang/zig/issues/3563
if (builtin.os == .dragonfly) return error.SkipZigTest;
+
var plenty_of_memory = try std.heap.direct_allocator.alloc(u8, 300 * 1024);
defer std.heap.direct_allocator.free(plenty_of_memory);