summaryrefslogtreecommitdiffstats
path: root/chrome/browser/unload_browsertest.cc
diff options
context:
space:
mode:
authorzea@chromium.org <zea@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-09-19 17:43:05 +0000
committerzea@chromium.org <zea@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-09-19 17:43:05 +0000
commit60054f2fbef18552b834623a70b60654fd668d6f (patch)
tree25db1f95aa8bea666f1e0346272dc87adfd014c6 /chrome/browser/unload_browsertest.cc
parent55aaad3f9bf94ac8c0ff69fc3f6af515c0832e61 (diff)
downloadchromium_src-60054f2fbef18552b834623a70b60654fd668d6f.zip
chromium_src-60054f2fbef18552b834623a70b60654fd668d6f.tar.gz
chromium_src-60054f2fbef18552b834623a70b60654fd668d6f.tar.bz2
Disable flaky UnloadTests that are timing out on linux asan.
BrowserCloseInfiniteBeforeUnload, BrowserCloseInfiniteBeforeUnloadAlert, and CrossSiteInfiniteBeforeUnloadAsync are all timing out. BUG=86469 TBR=jam@chromium.org Review URL: https://codereview.chromium.org/10939039 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@157562 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/unload_browsertest.cc')
-rw-r--r--chrome/browser/unload_browsertest.cc13
1 files changed, 8 insertions, 5 deletions
diff --git a/chrome/browser/unload_browsertest.cc b/chrome/browser/unload_browsertest.cc
index bfc6547..9b72b33 100644
--- a/chrome/browser/unload_browsertest.cc
+++ b/chrome/browser/unload_browsertest.cc
@@ -215,8 +215,10 @@ IN_PROC_BROWSER_TEST_F(UnloadTest, CrossSiteInfiniteUnloadSync) {
// Navigate to a page with an infinite beforeunload handler.
// Then two two async crosssite requests to ensure
// we don't get confused and think we're closing the tab.
-// This test is flaky on the valgrind UI bots. http://crbug.com/39057
-IN_PROC_BROWSER_TEST_F(UnloadTest, CrossSiteInfiniteBeforeUnloadAsync) {
+// This test is flaky on the valgrind UI bots. http://crbug.com/39057 and
+// http://crbug.com/86469
+IN_PROC_BROWSER_TEST_F(UnloadTest,
+ DISABLED_CrossSiteInfiniteBeforeUnloadAsync) {
// Tests makes no sense in single-process mode since the renderer is hung.
if (CommandLine::ForCurrentProcess()->HasSwitch(switches::kSingleProcess))
return;
@@ -331,7 +333,7 @@ IN_PROC_BROWSER_TEST_F(UnloadTest, BrowserCloseInfiniteUnload) {
// Tests closing the browser with a beforeunload handler that hangs.
// If this flakes, use http://crbug.com/78803 and http://crbug.com/86469
-IN_PROC_BROWSER_TEST_F(UnloadTest, BrowserCloseInfiniteBeforeUnload) {
+IN_PROC_BROWSER_TEST_F(UnloadTest, DISABLED_BrowserCloseInfiniteBeforeUnload) {
// Tests makes no sense in single-process mode since the renderer is hung.
if (CommandLine::ForCurrentProcess()->HasSwitch(switches::kSingleProcess))
return;
@@ -352,8 +354,9 @@ IN_PROC_BROWSER_TEST_F(UnloadTest, BrowserCloseInfiniteUnloadAlert) {
// Tests closing the browser with a beforeunload handler that hangs then
// pops up an alert.
-// If this flakes, use http://crbug.com/78803.
-IN_PROC_BROWSER_TEST_F(UnloadTest, BrowserCloseInfiniteBeforeUnloadAlert) {
+// If this flakes, use http://crbug.com/78803 and http://crbug.com/86469.
+IN_PROC_BROWSER_TEST_F(UnloadTest,
+ DISABLED_BrowserCloseInfiniteBeforeUnloadAlert) {
// Tests makes no sense in single-process mode since the renderer is hung.
if (CommandLine::ForCurrentProcess()->HasSwitch(switches::kSingleProcess))
return;