summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortimurrrr@chromium.org <timurrrr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-05-13 11:57:05 +0000
committertimurrrr@chromium.org <timurrrr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-05-13 11:57:05 +0000
commit2d121d308b31802c119394f4ee666dfc23dcb3d3 (patch)
tree6b55f6cde4d7d47bffdadfd7118ea8f6978a32a8
parentd64b31ab8aa223c69beae447b9a755321595dae7 (diff)
downloadchromium_src-2d121d308b31802c119394f4ee666dfc23dcb3d3.zip
chromium_src-2d121d308b31802c119394f4ee666dfc23dcb3d3.tar.gz
chromium_src-2d121d308b31802c119394f4ee666dfc23dcb3d3.tar.bz2
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
-rwxr-xr-xtools/valgrind/valgrind_test.py12
1 files 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)