The msan runtime aborts on RTLD_DEEPBIND, so disable the test under msan that does that.

BUG=705255
TBR=thakis@chromium.org

Review-Url: https://codereview.chromium.org/2787053003
Cr-Commit-Position: refs/heads/master@{#460979}


CrOS-Libchrome-Original-Commit: b0c09591d4f59f728515a628f25e78b19b78c09c
diff --git a/base/native_library_unittest.cc b/base/native_library_unittest.cc
index 883becb..320442b 100644
--- a/base/native_library_unittest.cc
+++ b/base/native_library_unittest.cc
@@ -100,8 +100,9 @@
 
 // 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