summaryrefslogtreecommitdiff
path: root/compiler/common_compiler_test.cc
diff options
context:
space:
mode:
author Hiroshi Yamauchi <yamauchi@google.com> 2016-04-07 11:31:26 -0700
committer Hiroshi Yamauchi <yamauchi@google.com> 2016-04-07 11:50:29 -0700
commit1d6fdaf2ed078c774e2c88c5132b23ab35259308 (patch)
tree33daa1fec36ea1ae9fd112832713d6722851f4de /compiler/common_compiler_test.cc
parent2c6760a0eb1e05d3a89a6cca9d2746da3d547e9e (diff)
Fix image_test for the CC collector.
Increase the image address space reserve. Bug: 27578460 Change-Id: I262f6be81c496a7a777013702e3da74ea4d619b4
Diffstat (limited to 'compiler/common_compiler_test.cc')
-rw-r--r--compiler/common_compiler_test.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/common_compiler_test.cc b/compiler/common_compiler_test.cc
index 0001b672be..f75a252df2 100644
--- a/compiler/common_compiler_test.cc
+++ b/compiler/common_compiler_test.cc
@@ -285,7 +285,7 @@ void CommonCompilerTest::ReserveImageSpace() {
MemMap::Init();
image_reservation_.reset(MemMap::MapAnonymous("image reservation",
reinterpret_cast<uint8_t*>(ART_BASE_ADDRESS),
- (size_t)100 * 1024 * 1024, // 100MB
+ (size_t)120 * 1024 * 1024, // 120MB
PROT_NONE,
false /* no need for 4gb flag with fixed mmap*/,
false /* not reusing existing reservation */,