summaryrefslogtreecommitdiffstats
path: root/chrome_frame
diff options
context:
space:
mode:
authoramit@chromium.org <amit@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-12-01 19:23:44 +0000
committeramit@chromium.org <amit@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-12-01 19:23:44 +0000
commit10949a83588a0cf94168644388238aab76b80332 (patch)
tree732fc6ac2dbe3bafd98efd1b052f74e1c28d9409 /chrome_frame
parentc3abd93df1cffe6a0e2d1893938c759493ad0a65 (diff)
downloadchromium_src-10949a83588a0cf94168644388238aab76b80332.zip
chromium_src-10949a83588a0cf94168644388238aab76b80332.tar.gz
chromium_src-10949a83588a0cf94168644388238aab76b80332.tar.bz2
Disable running selenium tests on IE7 builder
There's an issue that's seen only on this builder so far that any window.open just hangs. Disabling the selenium tests on this builder since tests opening popups fail. BUG=NONE TEST=FullTabSeleniumTest.Core Review URL: http://codereview.chromium.org/5473002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@67885 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome_frame')
-rw-r--r--chrome_frame/test/navigation_test.cc8
1 files changed, 8 insertions, 0 deletions
diff --git a/chrome_frame/test/navigation_test.cc b/chrome_frame/test/navigation_test.cc
index bcadc66..0918037 100644
--- a/chrome_frame/test/navigation_test.cc
+++ b/chrome_frame/test/navigation_test.cc
@@ -978,6 +978,14 @@ ACTION(VerifySeleniumCoreTestResults) {
// Tests refreshing causes a page load.
TEST_F(FullTabSeleniumTest, Core) {
+ // Please see http://code.google.com/p/chromium/issues/detail?id=60987
+ // for more information on why this test is disabled for Vista with IE7.
+ if (base::win::GetVersion() == base::win::VERSION_VISTA &&
+ GetInstalledIEVersion() == IE_7) {
+ LOG(INFO) << "Not running test on Vista with IE7";
+ return;
+ }
+
server_mock_.ExpectAndServeAnyRequests(CFInvocation::HttpHeader());
std::wstring url = GetTestUrl(L"core/TestRunner.html");