diff options
author | timurrrr@chromium.org <timurrrr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-12-24 11:09:30 +0000 |
---|---|---|
committer | timurrrr@chromium.org <timurrrr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-12-24 11:09:30 +0000 |
commit | 609ebd25728cc26c18727abce00152332a8de811 (patch) | |
tree | 9a854088de9eb4fd1c3c1d1a3129e9814dc4c5dc /tools | |
parent | 7ba75a693a08c5d7307d801f9cb716c088a72ab6 (diff) | |
download | chromium_src-609ebd25728cc26c18727abce00152332a8de811.zip chromium_src-609ebd25728cc26c18727abce00152332a8de811.tar.gz chromium_src-609ebd25728cc26c18727abce00152332a8de811.tar.bz2 |
Don't run DecoderVp8Test.EncodeAndDecode under Dr.Memory
Also temporary enable leak checking to see the how many leaks does DrM find on
the Chromium tests.
BUG=57266
TBR=glider
Review URL: http://codereview.chromium.org/6035007
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@70153 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools')
-rw-r--r-- | tools/valgrind/gtest_exclude/remoting_unittests.gtest-drmemory_win32.txt | 3 | ||||
-rwxr-xr-x | tools/valgrind/valgrind_test.py | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/tools/valgrind/gtest_exclude/remoting_unittests.gtest-drmemory_win32.txt b/tools/valgrind/gtest_exclude/remoting_unittests.gtest-drmemory_win32.txt index 5a08317..cccd1fe 100644 --- a/tools/valgrind/gtest_exclude/remoting_unittests.gtest-drmemory_win32.txt +++ b/tools/valgrind/gtest_exclude/remoting_unittests.gtest-drmemory_win32.txt @@ -3,3 +3,6 @@ JingleSessionTest.TestControlChannel JingleSessionTest.TestEventChannel JingleSessionTest.TestVideoChannel JingleSessionTest.TestVideoRtpChannel + +# This test fails on an assertion, see http://crbug.com/57266 +DecoderVp8Test.EncodeAndDecode diff --git a/tools/valgrind/valgrind_test.py b/tools/valgrind/valgrind_test.py index 0280b1d..4798e3c 100755 --- a/tools/valgrind/valgrind_test.py +++ b/tools/valgrind/valgrind_test.py @@ -754,7 +754,7 @@ class DrMemory(BaseTool): proc += ["-logdir", self.temp_dir] proc += ["-batch", "-quiet"] - proc += ["-no_check_leaks", "-no_count_leaks"] + #proc += ["-no_check_leaks", "-no_count_leaks"] # Dr.Memory requires -- to separate tool flags from the executable name. proc += ["--"] |