diff options
author | timurrrr@chromium.org <timurrrr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-11-10 10:00:40 +0000 |
---|---|---|
committer | timurrrr@chromium.org <timurrrr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-11-10 10:00:40 +0000 |
commit | 8c82942a526f1e605dc7c0b3c1d62663fd80e44b (patch) | |
tree | 5729a986153b5df617346109c3519e74d91f4e73 /tools | |
parent | c4cfc72d38c97106ececf0348ffe6d2971c6ecba (diff) | |
download | chromium_src-8c82942a526f1e605dc7c0b3c1d62663fd80e44b.zip chromium_src-8c82942a526f1e605dc7c0b3c1d62663fd80e44b.tar.gz chromium_src-8c82942a526f1e605dc7c0b3c1d62663fd80e44b.tar.bz2 |
Revert a workaround & exclude filters for TSan/Win failures
a) Unknown nonzero error codes disappeared after the bot recovery
(it was showing a "Recovered from a BSOD" message)
b) The CookieMonster tests were failing due to slow stl checks in Debug mode.
This should be fixed by r65377 and r65384
BUG=62512,59642
TEST=TSan/Win should remain green
TBR=glider
Review URL: http://codereview.chromium.org/4713003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65646 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools')
-rw-r--r-- | tools/valgrind/gtest_exclude/net_unittests.gtest-drmemory_win32.txt | 4 | ||||
-rw-r--r-- | tools/valgrind/gtest_exclude/net_unittests.gtest-tsan_win32.txt | 3 | ||||
-rwxr-xr-x | tools/valgrind/valgrind_test.py | 5 |
3 files changed, 0 insertions, 12 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 a4f8be1..10b8617 100644 --- a/tools/valgrind/gtest_exclude/net_unittests.gtest-drmemory_win32.txt +++ b/tools/valgrind/gtest_exclude/net_unittests.gtest-drmemory_win32.txt @@ -2,10 +2,6 @@ HttpNetworkTransactionTest.* HttpNetworkLayerTest.GET -# These take too long in Debug build, see http://crbug/59642 -CookieMonsterTest.GarbageCollectionTriggers -CookieMonsterTest.TestHostGarbageCollection - # TODO(timurrrr): investigate these ClientSocketPoolBaseTest.* SSLClientSocketTest.* diff --git a/tools/valgrind/gtest_exclude/net_unittests.gtest-tsan_win32.txt b/tools/valgrind/gtest_exclude/net_unittests.gtest-tsan_win32.txt index b7b6e2c..8f35ff1 100644 --- a/tools/valgrind/gtest_exclude/net_unittests.gtest-tsan_win32.txt +++ b/tools/valgrind/gtest_exclude/net_unittests.gtest-tsan_win32.txt @@ -21,9 +21,6 @@ ClientSocketPoolBaseTest.CancelPendingSocketAtSocketLimit HttpNetworkTransactionTest.* HttpNetworkLayerTest.GET -# Timing out under TSan, see http://crbug.com/59642 -CookieMonsterTest.GarbageCollectionTriggers - ######################################### # These tests fail if you don't have our SSL certificate installed. # Please see http://dev.chromium.org/developers/testing#TOC-SSL-tests diff --git a/tools/valgrind/valgrind_test.py b/tools/valgrind/valgrind_test.py index 718556d..0280b1d 100755 --- a/tools/valgrind/valgrind_test.py +++ b/tools/valgrind/valgrind_test.py @@ -707,11 +707,6 @@ class ThreadSanitizerWindows(ThreadSanitizerBase, PinTool): logging.info(self.INFO_MESSAGE) return ret - # TODO(timurrrr): temporary workaround for http://crbug.com/62512 - def Execute(self): - super(ThreadSanitizerWindows, self).Execute() - return 0 - class DrMemory(BaseTool): """Dr.Memory |