Make non-debug dex2oat omit timing and stats information
This is to try and avoid logcat rollovers during startup in stability monkey runs
Change-Id: I32a84517fdb97829d7efa3067cb99e2f38b049ae
diff --git a/src/common_test.h b/src/common_test.h
index ea5e96b..07f53a0 100644
--- a/src/common_test.h
+++ b/src/common_test.h
@@ -355,7 +355,8 @@
}
}
class_linker_->FixupDexCaches(runtime_->GetResolutionMethod());
- compiler_.reset(new Compiler(instruction_set, true, 2, false, new std::set<std::string>));
+ compiler_.reset(new Compiler(instruction_set, true, 2, false, new std::set<std::string>,
+ true, true));
#if defined(ART_USE_LLVM_COMPILER)
compiler_->SetElfFileName("gtest");
#endif