From 2d121d308b31802c119394f4ee666dfc23dcb3d3 Mon Sep 17 00:00:00 2001 From: "timurrrr@chromium.org" Date: Thu, 13 May 2010 11:57:05 +0000 Subject: Extend Memcheck and ThreadSanitizer comments TBR=glider,thestig Review URL: http://codereview.chromium.org/2065002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47138 0039d316-1c4b-4281-b951-d872f2087c98 --- tools/valgrind/valgrind_test.py | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/tools/valgrind/valgrind_test.py b/tools/valgrind/valgrind_test.py index cabee78..bcf9d71 100755 --- a/tools/valgrind/valgrind_test.py +++ b/tools/valgrind/valgrind_test.py @@ -424,7 +424,11 @@ class ValgrindTool(BaseTool): # TODO(timurrrr): Split into a separate file. class Memcheck(ValgrindTool): - """Memcheck""" + """Memcheck + Dynamic memory error detector for Linux & Mac + + http://valgrind.org/info/tools.html#memcheck + """ def __init__(self): ValgrindTool.__init__(self) @@ -507,9 +511,13 @@ class PinTool(BaseTool): class ThreadSanitizerBase(object): """ThreadSanitizer + Dynamic data race detector for Linux, Mac and Windows. + + http://code.google.com/p/data-race-test/wiki/ThreadSanitizer Since TSan works on both Valgrind (Linux, Mac) and PIN (Windows), we need - to have multiple inheritance""" + to have multiple inheritance + """ def __init__(self): self.RegisterOptionParserHook(ThreadSanitizerBase.ExtendOptionParser) -- cgit v1.1