summaryrefslogtreecommitdiffstats
path: root/compiler/oat_test.cc
diff options
context:
space:
mode:
authorBrian Carlstrom <bdc@google.com>2013-08-30 13:30:36 -0700
committerBrian Carlstrom <bdc@google.com>2013-08-30 13:31:54 -0700
commit919b11c3edbc9aacff979cb5e702ae40f10615ae (patch)
tree4c2051805874e46016404c8e35e0ff2404fee22c /compiler/oat_test.cc
parent6e288203c06c71c945935830b91a215a273bf8e6 (diff)
downloadart-919b11c3edbc9aacff979cb5e702ae40f10615ae.zip
art-919b11c3edbc9aacff979cb5e702ae40f10615ae.tar.gz
art-919b11c3edbc9aacff979cb5e702ae40f10615ae.tar.bz2
Remove conscrypt dependency from CommonTest
Bug: 10092469 Change-Id: I0c5dc72625ca4b5083ef3137d40334127bde8252
Diffstat (limited to 'compiler/oat_test.cc')
-rw-r--r--compiler/oat_test.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/oat_test.cc b/compiler/oat_test.cc
index 74b5da9..9ed2642 100644
--- a/compiler/oat_test.cc
+++ b/compiler/oat_test.cc
@@ -104,7 +104,7 @@ TEST_F(OatTest, WriteRead) {
ASSERT_TRUE(oat_file.get() != NULL);
const OatHeader& oat_header = oat_file->GetOatHeader();
ASSERT_TRUE(oat_header.IsValid());
- ASSERT_EQ(2U, oat_header.GetDexFileCount()); // core and conscrypt
+ ASSERT_EQ(1U, oat_header.GetDexFileCount()); // core
ASSERT_EQ(42U, oat_header.GetImageFileLocationOatChecksum());
ASSERT_EQ(4096U, oat_header.GetImageFileLocationOatDataBegin());
ASSERT_EQ("lue.art", oat_header.GetImageFileLocation());