diff options
author | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-07-30 21:37:08 +0000 |
---|---|---|
committer | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-07-30 21:37:08 +0000 |
commit | 1b9f18216c6d4128a946e6d25d2352605931ecbd (patch) | |
tree | 8a8da84432ebd93531167ce82cde73ca39740feb /tools | |
parent | 31d3ae599acf9d4104f25ff75694c21ec057bd48 (diff) | |
download | chromium_src-1b9f18216c6d4128a946e6d25d2352605931ecbd.zip chromium_src-1b9f18216c6d4128a946e6d25d2352605931ecbd.tar.gz chromium_src-1b9f18216c6d4128a946e6d25d2352605931ecbd.tar.bz2 |
Valgrind: Suppress a leak. Heapchecker: Re-enable test_shell_tests and unit_tests and see what happens.
BUG=132867,139703
TEST=none
Review URL: https://chromiumcodereview.appspot.com/10823088
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@149033 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools')
-rw-r--r-- | tools/heapcheck/test_shell_tests.gtest-heapcheck.txt | 3 | ||||
-rw-r--r-- | tools/heapcheck/unit_tests.gtest-heapcheck.txt | 3 | ||||
-rw-r--r-- | tools/valgrind/memcheck/suppressions.txt | 7 |
3 files changed, 7 insertions, 6 deletions
diff --git a/tools/heapcheck/test_shell_tests.gtest-heapcheck.txt b/tools/heapcheck/test_shell_tests.gtest-heapcheck.txt index 9beb096..e463c89 100644 --- a/tools/heapcheck/test_shell_tests.gtest-heapcheck.txt +++ b/tools/heapcheck/test_shell_tests.gtest-heapcheck.txt @@ -1,6 +1,3 @@ -# Due to http://crbug.com/132867 all test_shell tests are broken -*.* - # Fails on Chrome OS, http://crbug.com/93022 WebDOMEventListenerTest.SameListenerMultipleEvents diff --git a/tools/heapcheck/unit_tests.gtest-heapcheck.txt b/tools/heapcheck/unit_tests.gtest-heapcheck.txt index 1c909a5..5dc3fa3 100644 --- a/tools/heapcheck/unit_tests.gtest-heapcheck.txt +++ b/tools/heapcheck/unit_tests.gtest-heapcheck.txt @@ -1,6 +1,3 @@ -# Due to http://crbug.com/132867 all unit tests are broken -*.* - # Disable JavaScript tests that cause V8 to install a SIGPROF handler that # times out the subsequent fork() calls. # http://crbug.com/79320 diff --git a/tools/valgrind/memcheck/suppressions.txt b/tools/valgrind/memcheck/suppressions.txt index e1de0d9..52570ef 100644 --- a/tools/valgrind/memcheck/suppressions.txt +++ b/tools/valgrind/memcheck/suppressions.txt @@ -5794,6 +5794,13 @@ fun:_ZN4skia15ImageOperations6ResizeERK8SkBitmapNS0_12ResizeMethodEiiRK7SkIRect fun:_ZNK7WebCore15NativeImageSkia13resizedBitmapERK7SkIRectiiS3_ } +{ + bug_139703 + Memcheck:Leak + fun:_Znw* + fun:_ZN5media8Pipeline7DoPauseERKN4base8CallbackIFvvEEE + fun:_ZN5media8Pipeline8SeekTaskEN4base9TimeDeltaERKNS1_8CallbackIFvNS_14PipelineStatusEEEE +} #----------------------------------------------------------------------- # 4. These only occur on our Google workstations |