blob: 4490647d2c61010ea5a43ba66d5e801adec9f007 [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) {
Andreas Gampe38aa0b52018-07-10 23:26:55 -070022 ASSERT_TRUE(GenerateAppOdexFile(kDynamic, {"--runtime-arg", "-Xmx64M"}));
23 ASSERT_TRUE(Exec(kDynamic, kModeOatWithBootImage, {}, kListAndCode));
Vladimir Marko421087b2018-02-27 11:00:17 +000024}
25TEST_F(OatDumpTest, TestAppWithBootImageStatic) {
26 TEST_DISABLED_FOR_NON_STATIC_HOST_BUILDS();
Andreas Gampe38aa0b52018-07-10 23:26:55 -070027 ASSERT_TRUE(GenerateAppOdexFile(kStatic, {"--runtime-arg", "-Xmx64M"}));
28 ASSERT_TRUE(Exec(kStatic, kModeOatWithBootImage, {}, kListAndCode));
Vladimir Marko421087b2018-02-27 11:00:17 +000029}
30
Vladimir Markoffe26cc2019-02-26 09:51:56 +000031TEST_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(kDynamic, {"--runtime-arg", "-Xmx64M", app_image_arg}));
35 ASSERT_TRUE(Exec(kDynamic, kModeAppImage, {}, kListAndCode));
36}
37TEST_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(kStatic, {"--runtime-arg", "-Xmx64M", app_image_arg}));
42 ASSERT_TRUE(Exec(kStatic, kModeAppImage, {}, kListAndCode));
43}
44
Vladimir Marko421087b2018-02-27 11:00:17 +000045} // namespace art