Index: compiler-rt/trunk/lib/asan/tests/asan_test_utils.h =================================================================== --- compiler-rt/trunk/lib/asan/tests/asan_test_utils.h +++ compiler-rt/trunk/lib/asan/tests/asan_test_utils.h @@ -62,7 +62,9 @@ static const int kPageSize = 4096; -const size_t kLargeMalloc = 1 << 24; +// Big enough to be handled by secondary allocator and small enough to fit into +// quarantine for all configurations. +const size_t kLargeMalloc = 1 << 22; extern void free_aaa(void *p); extern void *malloc_aaa(size_t size);