diff options
author | 2023-03-06 19:16:48 +0000 | |
---|---|---|
committer | 2023-03-16 16:07:43 +0000 | |
commit | 7da3956e3ff5c96ffd56d5e52057a230536a2d46 (patch) | |
tree | 5750407a3ef6e15a304ff5294fcdd200df030faa /test/generate-boot-image | |
parent | bbb7177a0b9a82a330a03966d708538d2768ffa1 (diff) |
Revert^4 "Add the mainline framework boot image extensio...
Revert submission 2465993-boot-image-mainline-revert
Reason for revert: Relanding the changes
Reverted changes: /q/submissionid:2465993-boot-image-mainline-revert
Change-Id: I5dd81f74c08faccd1643c2b01826e6a76cbb10c5
Diffstat (limited to 'test/generate-boot-image')
-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=")) { |