Skip to content

Commit

Permalink
Disable CF web server tests temporarily on IE9 while we hunt down the…
Browse files Browse the repository at this point in the history
… cause of the first-request failures.

BUG=143699
TEST=chrome_frame_tests


Review URL: https://chromiumcodereview.appspot.com/11316280

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@173124 0039d316-1c4b-4281-b951-d872f2087c98
  • Loading branch information
robertshield@chromium.org committed Dec 14, 2012
1 parent c4db977 commit fc55fd1
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions chrome_frame/test/test_with_web_server.cc
Original file line number Diff line number Diff line change
Expand Up @@ -242,6 +242,12 @@ const wchar_t kPostedResultSubstring[] = L"/writefile/";

void ChromeFrameTestWithWebServer::SimpleBrowserTestExpectedResult(
BrowserKind browser, const wchar_t* page, const char* result) {
if (browser == IE && chrome_frame_test::GetInstalledIEVersion() >= IE_9) {
LOG(INFO) << "Temporarily disabling IE9 web server tests. "
"See http://crbug.com/143699";
return;
}

int tries = 0;
ExpectAndHandlePostedResult();
// Retry tests that timeout once; see http://crbug.com/96449.
Expand Down

0 comments on commit fc55fd1

Please sign in to comment.