summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorhayato@chromium.org <hayato@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-07-09 05:57:26 +0000
committerhayato@chromium.org <hayato@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-07-09 05:57:26 +0000
commit83582dc4c0d894276dfa5fff14254c0c2c98926a (patch)
tree173fee93e286a0ba8b306a631f22cc47d6978987
parent753e1826fb3225bab638e9807013aec1de40dbd4 (diff)
downloadchromium_src-83582dc4c0d894276dfa5fff14254c0c2c98926a.zip
chromium_src-83582dc4c0d894276dfa5fff14254c0c2c98926a.tar.gz
chromium_src-83582dc4c0d894276dfa5fff14254c0c2c98926a.tar.bz2
WebKit gardening. Disable tests which started to fail on canary after r121912 of WebKit.
CaptivePortalBrowserTest.GoBackToTimeout MultipartResponseTest.SingleVisit ErrorPageTest.DNSError_GoBack2Forward2 ErrorPageTest.DNSError_GoBack2AndForward ErrorPageTest.DNSError_GoBack2 CaptivePortalBrowserTest.ReloadTimeout BUG=136310 TEST=None TBR=rafaelw Review URL: https://chromiumcodereview.appspot.com/10693118 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@145644 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--chrome/browser/captive_portal/captive_portal_browsertest.cc6
-rw-r--r--chrome/browser/errorpage_browsertest.cc9
-rw-r--r--chrome/browser/history/multipart_browsertest.cc3
3 files changed, 12 insertions, 6 deletions
diff --git a/chrome/browser/captive_portal/captive_portal_browsertest.cc b/chrome/browser/captive_portal/captive_portal_browsertest.cc
index 12a9d6c..5b9137e 100644
--- a/chrome/browser/captive_portal/captive_portal_browsertest.cc
+++ b/chrome/browser/captive_portal/captive_portal_browsertest.cc
@@ -1710,7 +1710,8 @@ IN_PROC_BROWSER_TEST_F(CaptivePortalBrowserTest, GoBack) {
}
// Checks that navigating back to a timeout triggers captive portal detection.
-IN_PROC_BROWSER_TEST_F(CaptivePortalBrowserTest, GoBackToTimeout) {
+// Disabled: http://crbug.com/136310
+IN_PROC_BROWSER_TEST_F(CaptivePortalBrowserTest, DISABLED_GoBackToTimeout) {
// Disable captive portal detection so the first navigation doesn't open a
// login tab.
EnableCaptivePortalDetection(browser()->profile(), false);
@@ -1767,7 +1768,8 @@ IN_PROC_BROWSER_TEST_F(CaptivePortalBrowserTest, GoBackToTimeout) {
// Checks that reloading a timeout triggers captive portal detection.
// Much like the last test, though the captive portal is disabled before
// the inital navigation, rather than captive portal detection.
-IN_PROC_BROWSER_TEST_F(CaptivePortalBrowserTest, ReloadTimeout) {
+// Disabled: http://crbug.com/136310
+IN_PROC_BROWSER_TEST_F(CaptivePortalBrowserTest, DISABLED_ReloadTimeout) {
URLRequestMockCaptivePortalJobFactory::SetBehindCaptivePortal(false);
// Do the first navigation while not behind a captive portal.
diff --git a/chrome/browser/errorpage_browsertest.cc b/chrome/browser/errorpage_browsertest.cc
index 1b8a54f..824514c 100644
--- a/chrome/browser/errorpage_browsertest.cc
+++ b/chrome/browser/errorpage_browsertest.cc
@@ -139,7 +139,8 @@ IN_PROC_BROWSER_TEST_F(ErrorPageTest, DNSError_GoBack1) {
#endif
// Test that a DNS error occuring in the main frame does not result in an
// additional session history entry.
-IN_PROC_BROWSER_TEST_F(ErrorPageTest, MAYBE_DNSError_GoBack2) {
+// Disabled: http://crbug.com/136310
+IN_PROC_BROWSER_TEST_F(ErrorPageTest, DISABLED_DNSError_GoBack2) {
NavigateToFileURL(FILE_PATH_LITERAL("title2.html"));
NavigateToURLAndWaitForTitle(GetDnsErrorURL(), "Mock Link Doctor", 2);
@@ -157,7 +158,8 @@ IN_PROC_BROWSER_TEST_F(ErrorPageTest, MAYBE_DNSError_GoBack2) {
#endif
// Test that a DNS error occuring in the main frame does not result in an
// additional session history entry.
-IN_PROC_BROWSER_TEST_F(ErrorPageTest, MAYBE_DNSError_GoBack2AndForward) {
+// Disabled: http://crbug.com/136310
+IN_PROC_BROWSER_TEST_F(ErrorPageTest, DISABLED_DNSError_GoBack2AndForward) {
NavigateToFileURL(FILE_PATH_LITERAL("title2.html"));
NavigateToURLAndWaitForTitle(GetDnsErrorURL(), "Mock Link Doctor", 2);
@@ -177,7 +179,8 @@ IN_PROC_BROWSER_TEST_F(ErrorPageTest, MAYBE_DNSError_GoBack2AndForward) {
#endif
// Test that a DNS error occuring in the main frame does not result in an
// additional session history entry.
-IN_PROC_BROWSER_TEST_F(ErrorPageTest, MAYBE_DNSError_GoBack2Forward2) {
+// Disabled: http://crbug.com/136310
+IN_PROC_BROWSER_TEST_F(ErrorPageTest, DISABLED_DNSError_GoBack2Forward2) {
NavigateToFileURL(FILE_PATH_LITERAL("title3.html"));
NavigateToURLAndWaitForTitle(GetDnsErrorURL(), "Mock Link Doctor", 2);
diff --git a/chrome/browser/history/multipart_browsertest.cc b/chrome/browser/history/multipart_browsertest.cc
index 46d3a67..7b86bca 100644
--- a/chrome/browser/history/multipart_browsertest.cc
+++ b/chrome/browser/history/multipart_browsertest.cc
@@ -30,7 +30,8 @@ class MultipartResponseTest : public InProcessBrowserTest,
int update_history_count_;
};
-IN_PROC_BROWSER_TEST_F(MultipartResponseTest, SingleVisit) {
+// Disabled: http://crbug.com/136310
+IN_PROC_BROWSER_TEST_F(MultipartResponseTest, DISABLED_SingleVisit) {
// Make sure that visiting a multipart/x-mixed-replace site only
// creates one entry in the visits table.
ASSERT_TRUE(test_server()->Start());