| Index: build/android/pylib/valgrind_tools.py
|
| diff --git a/build/android/pylib/valgrind_tools.py b/build/android/pylib/valgrind_tools.py
|
| index 0eb0d7b6175dd159f5d74a21969ffd068d9659b1..95ae2b9797a058052ab67dd9b836a25fbe400579 100644
|
| --- a/build/android/pylib/valgrind_tools.py
|
| +++ b/build/android/pylib/valgrind_tools.py
|
| @@ -87,7 +87,10 @@ class AddressSanitizerTool(BaseTool):
|
| """AddressSanitizer tool."""
|
|
|
| WRAPPER_NAME = '/system/bin/asanwrapper'
|
| - EXTRA_OPTIONS = 'allocator_may_return_null=1,strict_memcmp=0'
|
| + # Disable memcmp overlap check.There are blobs (gl drivers)
|
| + # on some android devices that use memcmp on overlapping regions,
|
| + # nothing we can do about that.
|
| + EXTRA_OPTIONS = 'strict_memcmp=0'
|
|
|
| def __init__(self, adb):
|
| self._adb = adb
|
|
|