Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(145)

Unified Diff: chrome/browser/prerender/prerender_interceptor_unittest.cc

Issue 5695001: Disabling PrerenderInterceptorTests's due to memory leaks.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/prerender/prerender_interceptor_unittest.cc
===================================================================
--- chrome/browser/prerender/prerender_interceptor_unittest.cc (revision 68719)
+++ chrome/browser/prerender/prerender_interceptor_unittest.cc (working copy)
@@ -64,7 +64,10 @@
last_intercepted_gurl_ = url;
}
-TEST_F(PrerenderInterceptorTest, Interception) {
+// Temporarily disabling PrerenderInterceptorTest's due to a leak.
+// I have a fix, but will land in the morning.
+// http://crbug.com/65993
+TEST_F(PrerenderInterceptorTest, DISABLED_Interception) {
MakeTestUrl("files/prerender/doc1.html");
req_->set_load_flags(req_->load_flags() | net::LOAD_PREFETCH);
req_->Start();
@@ -74,7 +77,7 @@
EXPECT_EQ(gurl_, last_intercepted_gurl_);
}
-TEST_F(PrerenderInterceptorTest, NotAPrefetch) {
+TEST_F(PrerenderInterceptorTest, DISABLED_NotAPrefetch) {
MakeTestUrl("files/prerender/doc2.html");
req_->set_load_flags(req_->load_flags() & ~net::LOAD_PREFETCH);
req_->Start();
@@ -84,7 +87,7 @@
EXPECT_NE(gurl_, last_intercepted_gurl_);
}
-TEST_F(PrerenderInterceptorTest, WrongMimeType) {
+TEST_F(PrerenderInterceptorTest, DISABLED_WrongMimeType) {
MakeTestUrl("files/prerender/image.jpeg");
req_->set_load_flags(req_->load_flags() | net::LOAD_PREFETCH);
req_->Start();
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698