Commit e98b2dc1 authored by zhaoqin's avatar zhaoqin Committed by Commit bot

Disable delete mismatch on Dr.Memory bot

xref https://code.google.com/p/drmemory/issues/detail?id=1058

R=bruening@chromium.org
BUG=413215
NOTRY=true

Review URL: https://codereview.chromium.org/574643006

Cr-Commit-Position: refs/heads/master@{#295775}
parent 9362ad95
...@@ -257,20 +257,16 @@ instruction=mov 0xfffffffc(%esp) -> %eax ...@@ -257,20 +257,16 @@ instruction=mov 0xfffffffc(%esp) -> %eax
chrome.dll!blink::RenderStyle::resetBorder* chrome.dll!blink::RenderStyle::resetBorder*
INVALID HEAP ARGUMENT INVALID HEAP ARGUMENT
name=http://crbug.com/101537, http://crbug.com/101717 (1) name=http://crbug.com/101717 (1)
*!scoped_ptr<>*
INVALID HEAP ARGUMENT
name=http://crbug.com/101717 (2)
*!sandbox::PolicyBase::~PolicyBase *!sandbox::PolicyBase::~PolicyBase
INVALID HEAP ARGUMENT INVALID HEAP ARGUMENT
name=http://crbug.com/101717 (3) name=http://crbug.com/101717 (2)
*!scoped_ptr<>::~scoped_ptr<> *!scoped_ptr<>::~scoped_ptr<>
*!sandbox::GetHandleName *!sandbox::GetHandleName
INVALID HEAP ARGUMENT INVALID HEAP ARGUMENT
name=http://crbug.com/101717 (4) name=http://crbug.com/101717 (3)
*!scoped_ptr<>::~scoped_ptr<> *!scoped_ptr<>::~scoped_ptr<>
*!sandbox::GetPathFromHandle *!sandbox::GetPathFromHandle
...@@ -653,11 +649,6 @@ base.dll!base::MessageLoop::RunTask ...@@ -653,11 +649,6 @@ base.dll!base::MessageLoop::RunTask
base.dll!base::Thread::StopSoon base.dll!base::Thread::StopSoon
base.dll!base::MessageLoop::DeferOrRunPendingTask base.dll!base::MessageLoop::DeferOrRunPendingTask
INVALID HEAP ARGUMENT
name=http://crbug.com/413215
*!replace_operator_delete*
v8.dll!*
UNADDRESSABLE ACCESS UNADDRESSABLE ACCESS
name=http://crbug.com/414675 name=http://crbug.com/414675
blink_web.dll!blink::toCoreFrame blink_web.dll!blink::toCoreFrame
......
...@@ -2198,11 +2198,6 @@ content.dll!content::NavigationControllerImpl::LoadEntry ...@@ -2198,11 +2198,6 @@ content.dll!content::NavigationControllerImpl::LoadEntry
... ...
*!extensions::ExtensionHost::LoadInitialURL *!extensions::ExtensionHost::LoadInitialURL
INVALID HEAP ARGUMENT
name=bug_413215
*!replace_operator_delete*
v8.dll!*
UNINITIALIZED READ UNINITIALIZED READ
name=bug_414268 name=bug_414268
pdf.dll!chrome_pdf::PDFiumEngine::OnMouseMove pdf.dll!chrome_pdf::PDFiumEngine::OnMouseMove
......
...@@ -938,6 +938,10 @@ class DrMemory(BaseTool): ...@@ -938,6 +938,10 @@ class DrMemory(BaseTool):
# disable leak scan for now # disable leak scan for now
proc += ["-no_count_leaks", "-no_leak_scan"] 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 # make callstacks easier to read
proc += ["-callstack_srcfile_prefix", proc += ["-callstack_srcfile_prefix",
"build\\src,chromium\\src,crt_build\\self_x86"] "build\\src,chromium\\src,crt_build\\self_x86"]
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment