| Index: tools/valgrind/valgrind_test.py
|
| diff --git a/tools/valgrind/valgrind_test.py b/tools/valgrind/valgrind_test.py
|
| index 6efaeb610915e3fef140f4146b9c1ce85edac573..9f132c8414a7272f423a7cb62b742ac13a7dd60d 100644
|
| --- a/tools/valgrind/valgrind_test.py
|
| +++ b/tools/valgrind/valgrind_test.py
|
| @@ -712,6 +712,9 @@ class DrMemory(BaseTool):
|
| # disable leak scan for now
|
| proc += ["-no_count_leaks", "-no_leak_scan"]
|
|
|
| + # disable warnings about unaddressable prefetches
|
| + proc += ["-no_check_prefetch"]
|
| +
|
| # crbug.com/413215, no heap mismatch check for Windows release build binary
|
| if common.IsWindows() and "Release" in self._options.build_dir:
|
| proc += ["-no_check_delete_mismatch"]
|
|
|