| Index: tools/valgrind/valgrind_test.py
|
| diff --git a/tools/valgrind/valgrind_test.py b/tools/valgrind/valgrind_test.py
|
| index 4bbefa5aa1ee52f681b985444f2706732e34b909..29903d91629e6cb2a5242bffd3ba26ea73f993aa 100644
|
| --- a/tools/valgrind/valgrind_test.py
|
| +++ b/tools/valgrind/valgrind_test.py
|
| @@ -938,6 +938,10 @@ class DrMemory(BaseTool):
|
| # disable leak scan for now
|
| proc += ["-no_count_leaks", "-no_leak_scan"]
|
|
|
| + # 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"]
|
| +
|
| # make callstacks easier to read
|
| proc += ["-callstack_srcfile_prefix",
|
| "build\\src,chromium\\src,crt_build\\self_x86"]
|
|
|