blob: f12522277b8969ef937e7a7f9391a33545e700f5 [file] [log] [blame]
Vladimir Marko421087b2018-02-27 11:00:17 +00001/*
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
19namespace art {
20
21TEST_F(OatDumpTest, TestAppWithBootImage) {
22 std::string error_msg;
23 ASSERT_TRUE(GenerateAppOdexFile(kDynamic, {}, &error_msg)) << error_msg;
24 ASSERT_TRUE(Exec(kDynamic, kModeOatWithBootImage, {}, kListAndCode, &error_msg)) << error_msg;
25}
26TEST_F(OatDumpTest, TestAppWithBootImageStatic) {
27 TEST_DISABLED_FOR_NON_STATIC_HOST_BUILDS();
28 std::string error_msg;
29 ASSERT_TRUE(GenerateAppOdexFile(kStatic, {}, &error_msg)) << error_msg;
30 ASSERT_TRUE(Exec(kStatic, kModeOatWithBootImage, {}, kListAndCode, &error_msg)) << error_msg;
31}
32
33TEST_F(OatDumpTest, TestPicAppWithBootImage) {
34 std::string error_msg;
35 ASSERT_TRUE(GenerateAppOdexFile(kDynamic, {"--compile-pic"}, &error_msg)) << error_msg;
36 ASSERT_TRUE(Exec(kDynamic, kModeOatWithBootImage, {}, kListAndCode, &error_msg)) << error_msg;
37}
38TEST_F(OatDumpTest, TestPicAppWithBootImageStatic) {
39 TEST_DISABLED_FOR_NON_STATIC_HOST_BUILDS();
40 std::string error_msg;
41 ASSERT_TRUE(GenerateAppOdexFile(kStatic, {"--compile-pic"}, &error_msg)) << error_msg;
42 ASSERT_TRUE(Exec(kStatic, kModeOatWithBootImage, {}, kListAndCode, &error_msg)) << error_msg;
43}
44
45} // namespace art