Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2206)

Unified Diff: base/native_library_unittest.cc

Issue 2280953002: Disable NativeLibraryTest.LoadLibrary on android. (Closed)
Patch Set: Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/native_library_unittest.cc
diff --git a/base/native_library_unittest.cc b/base/native_library_unittest.cc
index 1d0683d4c7e6e083da99efcd96acb517e338e128..5fc9d1cf06a43f564738402954692f43e90300c7 100644
--- a/base/native_library_unittest.cc
+++ b/base/native_library_unittest.cc
@@ -86,12 +86,18 @@ class TestLibrary {
DISALLOW_COPY_AND_ASSIGN(TestLibrary);
};
+// NativeLibraaryTest.LoadLibrary is failing on M tablets only.
+// crbug/641309
+#if !defined(OS_ANDROID)
+
// Verifies that we can load a native library and resolve its exported symbols.
TEST(NativeLibraryTest, LoadLibrary) {
TestLibrary library;
EXPECT_EQ(5, library.Call<int>("GetSimpleTestValue"));
}
+#endif // !defined(OS_ANDROID)
+
// Android dlopen() requires further investigation, as it might vary across
// versions with respect to symbol resolution scope.
#if !defined(OS_ANDROID)
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698