Skip to content

Commit

Permalink
Merge tag 'android-7.1.1_r4' into cm-14.1
Browse files Browse the repository at this point in the history
Android 7.1.1 release 4

Change-Id: I14b36666b5a478024f3a9ffab90fd675a6157461
  • Loading branch information
invisiblek committed Dec 7, 2016
2 parents 20af132 + 12eb0c5 commit 58d4793
Show file tree
Hide file tree
Showing 73 changed files with 2,025 additions and 665 deletions.
6 changes: 5 additions & 1 deletion build/Android.gtest.mk
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ GTEST_DEX_DIRECTORIES := \
AllFields \
ExceptionHandle \
GetMethodSignature \
ImageLayoutA \
ImageLayoutB \
Instrumentation \
Interfaces \
Lookup \
Expand All @@ -37,6 +39,7 @@ GTEST_DEX_DIRECTORIES := \
MyClassNatives \
Nested \
NonStaticLeafMethods \
Packages \
ProtoCompare \
ProtoCompare2 \
ProfileTestMultiDex \
Expand Down Expand Up @@ -69,10 +72,11 @@ ART_GTEST_dex2oat_environment_tests_DEX_DEPS := Main MainStripped MultiDex Multi

ART_GTEST_class_linker_test_DEX_DEPS := Interfaces MultiDex MyClass Nested Statics StaticsFromCode
ART_GTEST_compiler_driver_test_DEX_DEPS := AbstractMethod StaticLeafMethods ProfileTestMultiDex
ART_GTEST_dex_cache_test_DEX_DEPS := Main
ART_GTEST_dex_cache_test_DEX_DEPS := Main Packages
ART_GTEST_dex_file_test_DEX_DEPS := GetMethodSignature Main Nested
ART_GTEST_dex2oat_test_DEX_DEPS := $(ART_GTEST_dex2oat_environment_tests_DEX_DEPS)
ART_GTEST_exception_test_DEX_DEPS := ExceptionHandle
ART_GTEST_image_test_DEX_DEPS := ImageLayoutA ImageLayoutB
ART_GTEST_instrumentation_test_DEX_DEPS := Instrumentation
ART_GTEST_jni_compiler_test_DEX_DEPS := MyClassNatives
ART_GTEST_jni_internal_test_DEX_DEPS := AllFields StaticLeafMethods
Expand Down
1 change: 1 addition & 0 deletions compiler/common_compiler_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,7 @@ void CommonCompilerTest::TearDown() {
method_inliner_map_.reset();
verification_results_.reset();
compiler_options_.reset();
image_reservation_.reset();

CommonRuntimeTest::TearDown();
}
Expand Down
2 changes: 1 addition & 1 deletion compiler/elf_writer_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ TEST_F(ElfWriterTest, dlsym) {
/*low_4gb*/false,
&error_msg));
CHECK(ef.get() != nullptr) << error_msg;
CHECK(ef->Load(false, /*low_4gb*/false, &error_msg)) << error_msg;
CHECK(ef->Load(file.get(), false, /*low_4gb*/false, &error_msg)) << error_msg;
EXPECT_EQ(dl_oatdata, ef->FindDynamicSymbolAddress("oatdata"));
EXPECT_EQ(dl_oatexec, ef->FindDynamicSymbolAddress("oatexec"));
EXPECT_EQ(dl_oatlastword, ef->FindDynamicSymbolAddress("oatlastword"));
Expand Down
Loading

0 comments on commit 58d4793

Please sign in to comment.