summaryrefslogtreecommitdiffstats
path: root/oatdump
diff options
context:
space:
mode:
Diffstat (limited to 'oatdump')
-rw-r--r--oatdump/oatdump_test.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/oatdump/oatdump_test.cc b/oatdump/oatdump_test.cc
index b34bc84eca..3e420adcc5 100644
--- a/oatdump/oatdump_test.cc
+++ b/oatdump/oatdump_test.cc
@@ -84,6 +84,8 @@ class OatDumpTest : public CommonRuntimeTest {
std::string core_oat_location_;
};
+// Disable tests on arm as they are taking too long to run for hammerhead. b/27824283.
+#ifndef __arm__
TEST_F(OatDumpTest, TestImage) {
std::string error_msg;
ASSERT_TRUE(Exec(kModeArt, {}, &error_msg)) << error_msg;
@@ -128,5 +130,5 @@ TEST_F(OatDumpTest, TestSymbolize) {
std::string error_msg;
ASSERT_TRUE(Exec(kModeSymbolize, {}, &error_msg)) << error_msg;
}
-
+#endif
} // namespace art