Disable flaky geolocation tests:

- GeolocationBrowserTest.ErrorOnPermissionDenied, crashes, bug 70585
- GeolocationBrowserTest.TabDestroyed, hangs, bug 70588

TBR=jknotten

BUG=70585, 70588
TEST=browser_tests
Review URL: http://codereview.chromium.org/6326009

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@72320 0039d316-1c4b-4281-b951-d872f2087c98
parent e72559bc
...@@ -375,7 +375,9 @@ IN_PROC_BROWSER_TEST_F(GeolocationBrowserTest, Geoposition) { ...@@ -375,7 +375,9 @@ IN_PROC_BROWSER_TEST_F(GeolocationBrowserTest, Geoposition) {
CheckGeoposition(MockLocationProvider::instance_->position_); CheckGeoposition(MockLocationProvider::instance_->position_);
} }
IN_PROC_BROWSER_TEST_F(GeolocationBrowserTest, ErrorOnPermissionDenied) { // Crashy, http://crbug.com/70585.
IN_PROC_BROWSER_TEST_F(GeolocationBrowserTest,
DISABLED_ErrorOnPermissionDenied) {
ASSERT_TRUE(Initialize(INITIALIZATION_NONE)); ASSERT_TRUE(Initialize(INITIALIZATION_NONE));
AddGeolocationWatch(true); AddGeolocationWatch(true);
// Infobar was displayed, deny access and check for error code. // Infobar was displayed, deny access and check for error code.
...@@ -609,7 +611,8 @@ IN_PROC_BROWSER_TEST_F(GeolocationBrowserTest, TwoWatchesInOneFrame) { ...@@ -609,7 +611,8 @@ IN_PROC_BROWSER_TEST_F(GeolocationBrowserTest, TwoWatchesInOneFrame) {
CheckGeoposition(final_position); CheckGeoposition(final_position);
} }
IN_PROC_BROWSER_TEST_F(GeolocationBrowserTest, TabDestroyed) { // Hangs flakily, http://crbug.com/70588.
IN_PROC_BROWSER_TEST_F(GeolocationBrowserTest, DISABLED_TabDestroyed) {
html_for_tests_ = "files/geolocation/tab_destroyed.html"; html_for_tests_ = "files/geolocation/tab_destroyed.html";
ASSERT_TRUE(Initialize(INITIALIZATION_IFRAMES)); ASSERT_TRUE(Initialize(INITIALIZATION_IFRAMES));
LoadIFrames(3); LoadIFrames(3);
...@@ -623,7 +626,7 @@ IN_PROC_BROWSER_TEST_F(GeolocationBrowserTest, TabDestroyed) { ...@@ -623,7 +626,7 @@ IN_PROC_BROWSER_TEST_F(GeolocationBrowserTest, TabDestroyed) {
iframe_xpath_ = L"//iframe[@id='iframe_2']"; iframe_xpath_ = L"//iframe[@id='iframe_2']";
AddGeolocationWatch(false); AddGeolocationWatch(false);
std::string script = std::string script =
"window.domAutomationController.setAutomationId(0);" "window.domAutomationController.setAutomationId(0);"
"window.domAutomationController.send(window.close());"; "window.domAutomationController.send(window.close());";
bool result = bool result =
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment