| 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)
|
|
|