diff options
author | rnk@chromium.org <rnk@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-02-19 20:24:29 +0000 |
---|---|---|
committer | rnk@chromium.org <rnk@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-02-19 20:24:29 +0000 |
commit | 1105266edf1efd39a1f5375f77cbb3adb4f6b899 (patch) | |
tree | e9959265676dcd06c4377f8886863cf8ff569b3a /tools/valgrind/valgrind_test.py | |
parent | e1471b3a711c969b8e818930db228de155dc50a7 (diff) | |
download | chromium_src-1105266edf1efd39a1f5375f77cbb3adb4f6b899.zip chromium_src-1105266edf1efd39a1f5375f77cbb3adb4f6b899.tar.gz chromium_src-1105266edf1efd39a1f5375f77cbb3adb4f6b899.tar.bz2 |
Exclude lsb_release from running under Valgrind
It's really a Python script, and Python's allocator is Valgrind-hostile.
See http://svn.python.org/projects/python/trunk/Misc/README.valgrind
TBR=timurrrr@chromium.org
BUG=177032
Review URL: https://codereview.chromium.org/12296032
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@183276 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools/valgrind/valgrind_test.py')
-rw-r--r-- | tools/valgrind/valgrind_test.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/valgrind/valgrind_test.py b/tools/valgrind/valgrind_test.py index 30aa4ad..e45b2e4 100644 --- a/tools/valgrind/valgrind_test.py +++ b/tools/valgrind/valgrind_test.py @@ -367,6 +367,8 @@ class ValgrindTool(BaseTool): proc += ["--trace-children-skip='*dbus-launch*'"] proc += ["--trace-children-skip='*perl*'"] proc += ["--trace-children-skip='*python*'"] + # This is really Python, but for some reason Valgrind follows it. + proc += ["--trace-children-skip='*lsb_release*'"] proc += self.ToolSpecificFlags() proc += self._tool_flags |