blob: 8738d64c2045c3bfdec3df64c172d8422d14e962 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
--- base/native_library_unittest.cc.orig 2022-03-28 18:11:04 UTC
+++ base/native_library_unittest.cc
@@ -119,7 +119,7 @@ TEST(NativeLibraryTest, LoadLibrary) {
// versions with respect to symbol resolution scope.
// TSan and MSan error out on RTLD_DEEPBIND, https://crbug.com/705255
#if !BUILDFLAG(IS_ANDROID) && !defined(THREAD_SANITIZER) && \
- !defined(MEMORY_SANITIZER)
+ !defined(MEMORY_SANITIZER) && !BUILDFLAG(IS_BSD)
// Verifies that the |prefer_own_symbols| option satisfies its guarantee that
// a loaded library will always prefer local symbol resolution before
|