summaryrefslogtreecommitdiffstats
path: root/chrome
diff options
context:
space:
mode:
authortim@chromium.org <tim@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-11-20 17:49:03 +0000
committertim@chromium.org <tim@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-11-20 17:49:03 +0000
commit69628c91347ac43e6cf21575c722358ef10f51bb (patch)
tree29d662c58d1cdbb50b3d8cdf653e19b568396fa5 /chrome
parenta15019678ab608953c47fd59cdc883b13e179e22 (diff)
downloadchromium_src-69628c91347ac43e6cf21575c722358ef10f51bb.zip
chromium_src-69628c91347ac43e6cf21575c722358ef10f51bb.tar.gz
chromium_src-69628c91347ac43e6cf21575c722358ef10f51bb.tar.bz2
Disable two tests causing valgrind issues from revision 32608.
TBR=jorlow TEST=ResourceDispatcherHostTest BUG=28364 Review URL: http://codereview.chromium.org/414040 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@32623 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome')
-rw-r--r--chrome/browser/renderer_host/resource_dispatcher_host_unittest.cc6
1 files changed, 4 insertions, 2 deletions
diff --git a/chrome/browser/renderer_host/resource_dispatcher_host_unittest.cc b/chrome/browser/renderer_host/resource_dispatcher_host_unittest.cc
index 732a504..eb3063c 100644
--- a/chrome/browser/renderer_host/resource_dispatcher_host_unittest.cc
+++ b/chrome/browser/renderer_host/resource_dispatcher_host_unittest.cc
@@ -326,7 +326,8 @@ void CheckSuccessfulRequest(const std::vector<IPC::Message>& messages,
}
// Tests whether many messages get dispatched properly.
-TEST_F(ResourceDispatcherHostTest, TestMany) {
+// TODO(jorlow): Re-enable once bug 28364 is fixed.
+TEST_F(ResourceDispatcherHostTest, DISABLED_TestMany) {
EXPECT_EQ(0, host_.GetOutstandingRequestsMemoryCost(0));
MakeTestRequest(0, 1, URLRequestTestJob::test_url_1());
@@ -612,7 +613,8 @@ TEST_F(ResourceDispatcherHostTest, TestBlockedRequestsProcessDies) {
// away. Note that we rely on Purify for finding the leaks if any.
// If this test turns the Purify bot red, check the ResourceDispatcherHost
// destructor to make sure the blocked requests are deleted.
-TEST_F(ResourceDispatcherHostTest, TestBlockedRequestsDontLeak) {
+// TODO(jorlow): Re-enable once bug 28364 is fixed.
+TEST_F(ResourceDispatcherHostTest, DISABLED_TestBlockedRequestsDontLeak) {
// This second receiver is used to emulate a second process.
ForwardingReceiver second_receiver(this);