Commit 8ce130de3c

Ryan Liptak <squeek502@hotmail.com>
2019-04-22 11:25:57
Bump up FixedBufferAllocator test memory to account for new tests
1 parent b359816
Changed files (1)
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..]);