diff options
Diffstat (limited to 'test/generate-boot-image/generate-boot-image.cc')
-rw-r--r-- | test/generate-boot-image/generate-boot-image.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/test/generate-boot-image/generate-boot-image.cc b/test/generate-boot-image/generate-boot-image.cc index 475bfb1528..f22bad4587 100644 --- a/test/generate-boot-image/generate-boot-image.cc +++ b/test/generate-boot-image/generate-boot-image.cc @@ -109,8 +109,9 @@ int main(int argc, char** argv) { android::base::InitLogging(argv, android::base::LogdLogger(android::base::SYSTEM)); std::string dir = ""; - // Set the compiler filter to `verify` by default to make test preparation faster. - std::string compiler_filter = "verify"; + // Set the compiler filter to `speed-profile` by default to make test preparation + // faster and behave like normal boot image generation. + std::string compiler_filter = "speed-profile"; for (int i = 1; i < argc; i++) { std::string_view arg{argv[i]}; if (android::base::ConsumePrefix(&arg, "--output-dir=")) { |