Skip to content

Commit a5d98be

Browse files
author
Siva Chandra Reddy
committed
[libc][Obvious] Bump hermetic alloc space to 64KB.
Few hermetic tests are failing as they are running out of memory. Differential Revision: https://reviews.llvm.org/D150724
1 parent 71978fc commit a5d98be

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libc/test/UnitTest/HermeticTestUtils.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ namespace {
2929
// requires. Hence, as a work around for this problem, we use a simple allocator
3030
// which just hands out continuous blocks from a statically allocated chunk of
3131
// memory.
32-
static constexpr uint64_t MEMORY_SIZE = 16384;
32+
static constexpr uint64_t MEMORY_SIZE = 65336;
3333
static uint8_t memory[MEMORY_SIZE];
3434
static uint8_t *ptr = memory;
3535

0 commit comments

Comments
 (0)