diff options
author | Nicolas Geoffray <ngeoffray@google.com> | 2016-03-24 09:23:04 +0000 |
---|---|---|
committer | Nicolas Geoffray <ngeoffray@google.com> | 2016-03-24 09:23:04 +0000 |
commit | 973ce7cc191295b8bcc3387dfe264586677507e0 (patch) | |
tree | 05a70c6f91422d7df652b187a918c524d6b691c7 /oatdump | |
parent | d6026cde1ef7f2b0abb7a3561510fe83a7dd9de2 (diff) | |
download | art-973ce7cc191295b8bcc3387dfe264586677507e0.tar.gz art-973ce7cc191295b8bcc3387dfe264586677507e0.tar.bz2 art-973ce7cc191295b8bcc3387dfe264586677507e0.zip |
Disable test on arm due to timeouts.
bug:27824283
Change-Id: I0e4d9b37dd3ac2d2390456a791ff28d9ea0b3510
Diffstat (limited to 'oatdump')
-rw-r--r-- | oatdump/oatdump_test.cc | 4 |
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 |