1 /*
2  * Copyright (C) 2018 The Android Open Source Project
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 #include "oatdump_test.h"
18 
19 namespace art {
20 
TEST_F(OatDumpTest,TestAppWithBootImage)21 TEST_F(OatDumpTest, TestAppWithBootImage) {
22   ASSERT_TRUE(GenerateAppOdexFile(Flavor::kDynamic, {"--runtime-arg", "-Xmx64M"}));
23   ASSERT_TRUE(Exec(Flavor::kDynamic, kModeOatWithBootImage, {}, kListAndCode));
24 }
TEST_F(OatDumpTest,TestAppWithBootImageStatic)25 TEST_F(OatDumpTest, TestAppWithBootImageStatic) {
26   TEST_DISABLED_FOR_NON_STATIC_HOST_BUILDS();
27   ASSERT_TRUE(GenerateAppOdexFile(Flavor::kStatic, {"--runtime-arg", "-Xmx64M"}));
28   ASSERT_TRUE(Exec(Flavor::kStatic, kModeOatWithBootImage, {}, kListAndCode));
29 }
30 
TEST_F(OatDumpTest,TestAppImageWithBootImage)31 TEST_F(OatDumpTest, TestAppImageWithBootImage) {
32   TEST_DISABLED_WITHOUT_BAKER_READ_BARRIERS();  // GC bug, b/126305867
33   const std::string app_image_arg = "--app-image-file=" + GetAppImageName();
34   ASSERT_TRUE(GenerateAppOdexFile(Flavor::kDynamic, {"--runtime-arg", "-Xmx64M", app_image_arg}));
35   ASSERT_TRUE(Exec(Flavor::kDynamic, kModeAppImage, {}, kListAndCode));
36 }
TEST_F(OatDumpTest,TestAppImageWithBootImageStatic)37 TEST_F(OatDumpTest, TestAppImageWithBootImageStatic) {
38   TEST_DISABLED_WITHOUT_BAKER_READ_BARRIERS();  // GC bug, b/126305867
39   TEST_DISABLED_FOR_NON_STATIC_HOST_BUILDS();
40   const std::string app_image_arg = "--app-image-file=" + GetAppImageName();
41   ASSERT_TRUE(GenerateAppOdexFile(Flavor::kStatic, {"--runtime-arg", "-Xmx64M", app_image_arg}));
42   ASSERT_TRUE(Exec(Flavor::kStatic, kModeAppImage, {}, kListAndCode));
43 }
44 
TEST_F(OatDumpTest,TestAppImageInvalidPath)45 TEST_F(OatDumpTest, TestAppImageInvalidPath) {
46   TEST_DISABLED_WITHOUT_BAKER_READ_BARRIERS();  // GC bug, b/126305867
47   TEST_DISABLED_FOR_NON_STATIC_HOST_BUILDS();
48   const std::string app_image_arg = "--app-image-file=" + GetAppImageName();
49   ASSERT_TRUE(GenerateAppOdexFile(Flavor::kStatic, {"--runtime-arg", "-Xmx64M", app_image_arg}));
50   SetAppImageName("missing_app_image.art");
51   ASSERT_TRUE(Exec(Flavor::kStatic, kModeAppImage, {}, kListAndCode, /*expect_failure=*/true));
52 }
53 
54 }  // namespace art
55