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 std::string error_msg;
23 ASSERT_TRUE(GenerateAppOdexFile(kDynamic, {"--runtime-arg", "-Xmx64M"}, &error_msg)) << error_msg;
24 ASSERT_TRUE(Exec(kDynamic, kModeOatWithBootImage, {}, kListAndCode, &error_msg)) << error_msg;
25 }
TEST_F(OatDumpTest,TestAppWithBootImageStatic)26 TEST_F(OatDumpTest, TestAppWithBootImageStatic) {
27 TEST_DISABLED_FOR_NON_STATIC_HOST_BUILDS();
28 std::string error_msg;
29 ASSERT_TRUE(GenerateAppOdexFile(kStatic, {"--runtime-arg", "-Xmx64M"}, &error_msg)) << error_msg;
30 ASSERT_TRUE(Exec(kStatic, kModeOatWithBootImage, {}, kListAndCode, &error_msg)) << error_msg;
31 }
32
TEST_F(OatDumpTest,TestPicAppWithBootImage)33 TEST_F(OatDumpTest, TestPicAppWithBootImage) {
34 std::string error_msg;
35 ASSERT_TRUE(
36 GenerateAppOdexFile(kDynamic, {"--runtime-arg", "-Xmx64M", "--compile-pic"}, &error_msg))
37 << error_msg;
38 ASSERT_TRUE(Exec(kDynamic, kModeOatWithBootImage, {}, kListAndCode, &error_msg)) << error_msg;
39 }
TEST_F(OatDumpTest,TestPicAppWithBootImageStatic)40 TEST_F(OatDumpTest, TestPicAppWithBootImageStatic) {
41 TEST_DISABLED_FOR_NON_STATIC_HOST_BUILDS();
42 std::string error_msg;
43 ASSERT_TRUE(
44 GenerateAppOdexFile(kStatic, {"--runtime-arg", "-Xmx64M", "--compile-pic"}, &error_msg))
45 << error_msg;
46 ASSERT_TRUE(Exec(kStatic, kModeOatWithBootImage, {}, kListAndCode, &error_msg)) << error_msg;
47 }
48
49 } // namespace art
50