diff options
author | timurrrr@chromium.org <timurrrr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-06-04 13:45:14 +0000 |
---|---|---|
committer | timurrrr@chromium.org <timurrrr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-06-04 13:45:14 +0000 |
commit | 9935e32981402d05754cd52d59b27c5e12d45f54 (patch) | |
tree | b458081fdfdfaaeb653bcf307c7a4da058c491a2 /tools | |
parent | 64b1b48ef065eb50bbc49967ffceb8a3f864a041 (diff) | |
download | chromium_src-9935e32981402d05754cd52d59b27c5e12d45f54.zip chromium_src-9935e32981402d05754cd52d59b27c5e12d45f54.tar.gz chromium_src-9935e32981402d05754cd52d59b27c5e12d45f54.tar.bz2 |
Suppress one data race in media::AudioOutputMixer; exclude one flaky tests from DrMemory runs
TBR=thakis
BUG=131001,130874
Review URL: https://chromiumcodereview.appspot.com/10519004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@140280 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools')
-rw-r--r-- | tools/valgrind/gtest_exclude/net_unittests.gtest-drmemory_win32.txt | 3 | ||||
-rw-r--r-- | tools/valgrind/tsan/suppressions.txt | 10 |
2 files changed, 13 insertions, 0 deletions
diff --git a/tools/valgrind/gtest_exclude/net_unittests.gtest-drmemory_win32.txt b/tools/valgrind/gtest_exclude/net_unittests.gtest-drmemory_win32.txt index e882d5b..96d1d4b 100644 --- a/tools/valgrind/gtest_exclude/net_unittests.gtest-drmemory_win32.txt +++ b/tools/valgrind/gtest_exclude/net_unittests.gtest-drmemory_win32.txt @@ -20,6 +20,9 @@ ClientSocketPoolBaseTest.DisableCleanupTimer # Flaky, see http://crbug.com/108422 SSLClientSocketTest.ConnectMismatched +# Sometimes fails, see http://crbug.com/130874 +HttpNetworkTransactionSpdy2Test.BasicAuthSpdyProxy + ############################################################################## # TODO(rnk): The exclusions below should only apply to the full mode # DrMemory bot. diff --git a/tools/valgrind/tsan/suppressions.txt b/tools/valgrind/tsan/suppressions.txt index 2f7f3e5..3334f80 100644 --- a/tools/valgrind/tsan/suppressions.txt +++ b/tools/valgrind/tsan/suppressions.txt @@ -938,3 +938,13 @@ fun:ProcessSingleton::LinuxWatcher::HandleMessage fun:base::internal::RunnableAdapter::Run } +{ + bug_131001 + ThreadSanitizer:Race + ... + fun:media::AudioOutputMixer::StopStream + fun:media::AudioOutputProxy::Stop + fun:media::AudioOutputController::DoStopCloseAndClearStream + fun:media::AudioOutputController::DoClose + fun:base::internal::RunnableAdapter::Run +} |