diff options
author | timurrrr@chromium.org <timurrrr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-09 10:28:32 +0000 |
---|---|---|
committer | timurrrr@chromium.org <timurrrr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-09 10:28:32 +0000 |
commit | e28f486aaf3e7ce04ae2f02c342f9bf26dcba601 (patch) | |
tree | 1ee90cfccb12f20a34baea270b1eb69bc8794506 /tools/valgrind/chrome_tests.bat | |
parent | fe0433b999d2bc6a4b717d546ebc0108f35eed34 (diff) | |
download | chromium_src-e28f486aaf3e7ce04ae2f02c342f9bf26dcba601.zip chromium_src-e28f486aaf3e7ce04ae2f02c342f9bf26dcba601.tar.gz chromium_src-e28f486aaf3e7ce04ae2f02c342f9bf26dcba601.tar.bz2 |
Add drmemory_light and drmemory_full modes [unaddr-only vs full]
Also, remove some obsolete Dr. Memory flags
TBR=bruening
Review URL: http://codereview.chromium.org/7787027
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@100385 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools/valgrind/chrome_tests.bat')
-rwxr-xr-x | tools/valgrind/chrome_tests.bat | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tools/valgrind/chrome_tests.bat b/tools/valgrind/chrome_tests.bat index 2cd8d4d..fe9d59f 100755 --- a/tools/valgrind/chrome_tests.bat +++ b/tools/valgrind/chrome_tests.bat @@ -1,5 +1,5 @@ @echo off
-:: Copyright (c) 2010 The Chromium Authors. All rights reserved.
+:: Copyright (c) 2011 The Chromium Authors. All rights reserved.
:: Use of this source code is governed by a BSD-style license that can be
:: found in the LICENSE file.
@@ -23,7 +23,9 @@ goto :EOF SHIFT
set TOOL_NAME=%1
:: }}}
-if %TOOL_NAME% == drmemory GOTO :SETUP_DRMEMORY
+if %TOOL_NAME% == drmemory GOTO :SETUP_DRMEMORY
+if %TOOL_NAME% == drmemory_light GOTO :SETUP_DRMEMORY
+if %TOOL_NAME% == drmemory_full GOTO :SETUP_DRMEMORY
if %TOOL_NAME% == tsan GOTO :SETUP_TSAN
echo "Unknown tool: %TOOL_NAME%! Only tsan and drmemory are supported right now"
set %ERRORLEVEL% 1
|