Add parsed options for heap min free, heap max free, target utilization.
Added options in runtime for heap min free, max free, and target utilization.
Change-Id: Iaea988ffbf6cb7f07127640786168de7d341f1e1
diff --git a/src/common_test.h b/src/common_test.h
index 62ff907..560edeb 100644
--- a/src/common_test.h
+++ b/src/common_test.h
@@ -322,8 +322,8 @@
java_lang_dex_file_ = DexFile::Open(GetLibCoreDexFileName(), GetLibCoreDexFileName());
boot_class_path_.push_back(java_lang_dex_file_);
- std::string min_heap_string(StringPrintf("-Xms%zdm", Heap::kInitialSize / MB));
- std::string max_heap_string(StringPrintf("-Xmx%zdm", Heap::kMaximumSize / MB));
+ std::string min_heap_string(StringPrintf("-Xms%zdm", Heap::kDefaultInitialSize / MB));
+ std::string max_heap_string(StringPrintf("-Xmx%zdm", Heap::kDefaultMaximumSize / MB));
Runtime::Options options;
options.push_back(std::make_pair("compiler", reinterpret_cast<void*>(NULL)));