summaryrefslogtreecommitdiff
path: root/dex2oat/driver/compiler_driver_test.cc
diff options
context:
space:
mode:
author Eric Holk <eholk@google.com> 2020-02-25 20:31:05 +0000
committer Treehugger Robot <treehugger-gerrit@google.com> 2020-02-26 00:18:37 +0000
commitbbec8a6fc720ee5ce572d3fb63617fb0af6addc7 (patch)
tree62cfdd7f36d93e41cb57af0d61e8f7c1f9ee3b55 /dex2oat/driver/compiler_driver_test.cc
parent6972b9631cb85249ab35cf9f443890089733d022 (diff)
Revert "If generating an image, run initialization and other optimizations."
This reverts commit ada8536c19e57cbfe55dcb3c72aa95e79365ed21. Reason for revert: test failures Change-Id: I8640fe842d7f2255b5749403c798094f9e365fda
Diffstat (limited to 'dex2oat/driver/compiler_driver_test.cc')
-rw-r--r--dex2oat/driver/compiler_driver_test.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/dex2oat/driver/compiler_driver_test.cc b/dex2oat/driver/compiler_driver_test.cc
index 50cb292a4d..0a9702b330 100644
--- a/dex2oat/driver/compiler_driver_test.cc
+++ b/dex2oat/driver/compiler_driver_test.cc
@@ -308,7 +308,7 @@ class CompilerDriverVerifyTest : public CompilerDriverTest {
bool found = compiler_driver_->GetCompiledClass(
ClassReference(&klass->GetDexFile(), klass->GetDexTypeIndex().index_), &status);
ASSERT_TRUE(found);
- EXPECT_GE(status, ClassStatus::kVerified);
+ EXPECT_EQ(status, ClassStatus::kVerified);
}
};