Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(251)

Unified Diff: tools/valgrind/valgrind_test.py

Issue 574643006: Disable delete mismatch on Dr.Memory bot (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: PTAL Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tools/valgrind/drmemory/suppressions_full.txt ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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"]
« no previous file with comments | « tools/valgrind/drmemory/suppressions_full.txt ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698