summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorrnk@chromium.org <rnk@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-01-26 18:23:37 +0000
committerrnk@chromium.org <rnk@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-01-26 18:23:37 +0000
commit107c67e51165b950d7bac275d0c8af06a10e2e4d (patch)
tree2bc8046a4c2cbac1c1964dea064431444fe252e3 /tools
parent80ec6cf87ef5e8a2e7572e7db7ad2fd9446fc1b0 (diff)
downloadchromium_src-107c67e51165b950d7bac275d0c8af06a10e2e4d.zip
chromium_src-107c67e51165b950d7bac275d0c8af06a10e2e4d.tar.gz
chromium_src-107c67e51165b950d7bac275d0c8af06a10e2e4d.tar.bz2
Exclude a WebSocket test from DrMemory and suppress likely false pos in NSS.
The WebSocketServerSocketTest takes 1500s under full DrMemory, which contributes to us hitting the 10000s timeout. - NSS false positives: http://code.google.com/p/drmemory/issues/detail?id=765 - WebSocketServerSocketTest slowness: http://code.google.com/p/drmemory/issues/detail?id=767 TBR=timurrrr@chromium.org BUG=see DrMemory bugs TEST=drm full bot should go greener Review URL: https://chromiumcodereview.appspot.com/9289053 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@119260 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools')
-rw-r--r--tools/valgrind/drmemory/suppressions_full.txt7
-rw-r--r--tools/valgrind/gtest_exclude/net_unittests.gtest-drmemory_win32.txt9
2 files changed, 16 insertions, 0 deletions
diff --git a/tools/valgrind/drmemory/suppressions_full.txt b/tools/valgrind/drmemory/suppressions_full.txt
index 3de3ce0..879b21a 100644
--- a/tools/valgrind/drmemory/suppressions_full.txt
+++ b/tools/valgrind/drmemory/suppressions_full.txt
@@ -743,6 +743,13 @@ UNINITIALIZED READ
name=http://code.google.com/p/drmemory/issues/detail?id=493
USP10.dll!ScriptPositionSingleGlyph
+# Unhandled syscall false pos. This generates thousands of reports on
+# net_unittests, so we use a very broad suppression.
+UNINITIALIZED READ
+name=http://code.google.com/p/drmemory/issues/detail?id=765
+...
+*!ssl3_*
+
###############################################################
# Benign issues in Chromium
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 41b9b2d..f1f91ae 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,15 @@ ClientSocketPoolBaseTest.DisableCleanupTimer
# Flaky, see http://crbug.com/108422
SSLClientSocketTest.ConnectMismatched
+##############################################################################
+# TODO(rnk): The exclusions below should only apply to the full mode
+# DrMemory bot.
+
# Hits DCHECK failure due to 100ms delayed task in socket_test_util.cc, see
# http://crbug.com/110793 and http://crbug.com/95007
SpdyHttpStreamTest.*
+
+# Extremely slow under DrMemory. Whole fixture takes ~1500s while Linux
+# Valgrind takes <40s.
+# http://code.google.com/p/drmemory/issues/detail?id=767
+WebSocketServerSocketTest.*