authorgravatar for squeek502@hotmail.comRyan Liptak <squeek502@hotmail.com> 2019-04-22 02:25:57-07:00
committergravatar for squeek502@hotmail.comRyan Liptak <squeek502@hotmail.com> 2019-04-22 02:25:57-07:00
log8ce130de3cf38e09cfbcbd1b22da34ae5b27a040
tree6bd37811e8236d07039d669f457347f3b9b356dd
parentb3598163df821a3cd11470ebc4fc45e032a0183b

Bump up FixedBufferAllocator test memory to account for new tests


1 files changed, 1 insertions(+), 1 deletions(-)

std/heap.zig+1-1
...@@ -609,7 +609,7 @@ test "ArenaAllocator" {...@@ -609,7 +609,7 @@ test "ArenaAllocator" {
609 try testAllocatorAlignedShrink(&arena_allocator.allocator);609 try testAllocatorAlignedShrink(&arena_allocator.allocator);
610}610}
611611
612var test_fixed_buffer_allocator_memory: [30000 * @sizeOf(usize)]u8 = undefined;612var test_fixed_buffer_allocator_memory: [40000 * @sizeOf(usize)]u8 = undefined;
613test "FixedBufferAllocator" {613test "FixedBufferAllocator" {
614 var fixed_buffer_allocator = FixedBufferAllocator.init(test_fixed_buffer_allocator_memory[0..]);614 var fixed_buffer_allocator = FixedBufferAllocator.init(test_fixed_buffer_allocator_memory[0..]);
615615