From 8ce130de3cf38e09cfbcbd1b22da34ae5b27a040 Mon Sep 17 00:00:00 2001 From: Ryan Liptak Date: Mon, 22 Apr 2019 02:25:57 -0700 Subject: [PATCH] Bump up FixedBufferAllocator test memory to account for new tests --- std/heap.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/std/heap.zig b/std/heap.zig index 255c25c2795000902656b28402e9a2d83321ba3b..1e539bf4b18a5ed387586a9ad8ee6b31ecd08c42 100644 --- a/std/heap.zig +++ b/std/heap.zig @@ -609,7 +609,7 @@ test "ArenaAllocator" { try testAllocatorAlignedShrink(&arena_allocator.allocator); } -var test_fixed_buffer_allocator_memory: [30000 * @sizeOf(usize)]u8 = undefined; +var test_fixed_buffer_allocator_memory: [40000 * @sizeOf(usize)]u8 = undefined; test "FixedBufferAllocator" { var fixed_buffer_allocator = FixedBufferAllocator.init(test_fixed_buffer_allocator_memory[0..]); -- 2.54.0