aboutsummaryrefslogtreecommitdiff
path: root/lib/std/atomic/stack.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/stack.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/stack.zig')
-rw-r--r--lib/std/atomic/stack.zig2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/std/atomic/stack.zig b/lib/std/atomic/stack.zig
index ee6238542f..f96696c923 100644
--- a/lib/std/atomic/stack.zig
+++ b/lib/std/atomic/stack.zig
@@ -86,7 +86,9 @@ const puts_per_thread = 500;
const put_thread_count = 3;
test "std.atomic.stack" {
+ // 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);