Bump up FixedBufferAllocator test memory to account for new tests

This commit is contained in:
Ryan Liptak 2019-04-22 02:25:57 -07:00
parent b3598163df
commit 8ce130de3c

View File

@ -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..]);