| Index: base/native_library_unittest.cc
|
| diff --git a/base/native_library_unittest.cc b/base/native_library_unittest.cc
|
| index 883becbb61d4e1ef84481802a965f5ada07c0896..320442bdd11febe0551d4d6cfec97ed4f9ce3318 100644
|
| --- a/base/native_library_unittest.cc
|
| +++ b/base/native_library_unittest.cc
|
| @@ -100,8 +100,9 @@ TEST(NativeLibraryTest, LoadLibrary) {
|
|
|
| // Android dlopen() requires further investigation, as it might vary across
|
| // versions with respect to symbol resolution scope.
|
| -// TSan errors out on RTLD_DEEPBIND, https://crbug.com/705255
|
| -#if !defined(OS_ANDROID) && !defined(THREAD_SANITIZER)
|
| +// TSan and MSan error out on RTLD_DEEPBIND, https://crbug.com/705255
|
| +#if !defined(OS_ANDROID) && !defined(THREAD_SANITIZER) && \
|
| + !defined(MEMORY_SANITIZER)
|
|
|
| // Verifies that the |prefer_own_symbols| option satisfies its guarantee that
|
| // a loaded library will always prefer local symbol resolution before
|
|
|