diff options
author | zhaoqin@google.com <zhaoqin@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-11-02 18:57:06 +0000 |
---|---|---|
committer | zhaoqin@google.com <zhaoqin@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-11-02 18:57:06 +0000 |
commit | f6ed3d18cdec0ca63de8033aa1da82eafc2126fa (patch) | |
tree | e18ed5070acbeed66b14f3978d5d4a793c7ec8c3 /tools | |
parent | 683634f0bc6f069910ecb1fa3d9bef5096ed41b0 (diff) | |
download | chromium_src-f6ed3d18cdec0ca63de8033aa1da82eafc2126fa.zip chromium_src-f6ed3d18cdec0ca63de8033aa1da82eafc2126fa.tar.gz chromium_src-f6ed3d18cdec0ca63de8033aa1da82eafc2126fa.tar.bz2 |
add -dr_ops before each ops used by -dr_ops
NOTRY=true
R=bruening@chromium.org
Review URL: https://chromiumcodereview.appspot.com/11363057
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@165718 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools')
-rw-r--r-- | tools/valgrind/valgrind_test.py | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/tools/valgrind/valgrind_test.py b/tools/valgrind/valgrind_test.py index 7456aab..20f6697 100644 --- a/tools/valgrind/valgrind_test.py +++ b/tools/valgrind/valgrind_test.py @@ -874,12 +874,14 @@ class DrMemory(BaseTool): logging.warning("WARNING: NOT USING SUPPRESSIONS!") # Un-comment to dump Dr.Memory events on error - #proc += ["-dr_ops", "-dumpcore_mask 0x8bff"] + #proc += ["-dr_ops", "-dumpcore_mask", "-dr_ops", "0x8bff"] # Un-comment and comment next line to debug Dr.Memory - #proc += ["-dr_ops", "-no_hide -msgbox_mask 15 -stderr_mask 15"] + #proc += ["-dr_ops", "-no_hide"] + #proc += ["-dr_ops", "-msgbox_mask", "-dr_ops", "15"] + #Proc += ["-dr_ops", "-stderr_mask", "-dr_ops", "15"] # Ensure we see messages about Dr. Memory crashing! - proc += ["-dr_ops", "\'-stderr_mask 12\'"] + proc += ["-dr_ops", "-stderr_mask", "-dr_ops", "12"] if self._options.use_debug: proc += ["-debug"] |