blob: 34b07d2ddf81b89fb88f38cb2100fb9e528fc161 [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;
Vladimir Markoacffee02018-03-12 13:30:42 +000023 ASSERT_TRUE(GenerateAppOdexFile(kDynamic, {"--runtime-arg", "-Xmx64M"}, &error_msg)) << error_msg;
Vladimir Marko421087b2018-02-27 11:00:17 +000024 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;
Vladimir Markoacffee02018-03-12 13:30:42 +000029 ASSERT_TRUE(GenerateAppOdexFile(kStatic, {"--runtime-arg", "-Xmx64M"}, &error_msg)) << error_msg;
Vladimir Marko421087b2018-02-27 11:00:17 +000030 ASSERT_TRUE(Exec(kStatic, kModeOatWithBootImage, {}, kListAndCode, &error_msg)) << error_msg;
31}
32
33TEST_F(OatDumpTest, TestPicAppWithBootImage) {
34 std::string error_msg;
Vladimir Markoacffee02018-03-12 13:30:42 +000035 ASSERT_TRUE(
36 GenerateAppOdexFile(kDynamic, {"--runtime-arg", "-Xmx64M", "--compile-pic"}, &error_msg))
37 << error_msg;
Vladimir Marko421087b2018-02-27 11:00:17 +000038 ASSERT_TRUE(Exec(kDynamic, kModeOatWithBootImage, {}, kListAndCode, &error_msg)) << error_msg;
39}
40TEST_F(OatDumpTest, TestPicAppWithBootImageStatic) {
41 TEST_DISABLED_FOR_NON_STATIC_HOST_BUILDS();
42 std::string error_msg;
Vladimir Markoacffee02018-03-12 13:30:42 +000043 ASSERT_TRUE(
44 GenerateAppOdexFile(kStatic, {"--runtime-arg", "-Xmx64M", "--compile-pic"}, &error_msg))
45 << error_msg;
Vladimir Marko421087b2018-02-27 11:00:17 +000046 ASSERT_TRUE(Exec(kStatic, kModeOatWithBootImage, {}, kListAndCode, &error_msg)) << error_msg;
47}
48
49} // namespace art