diff options
author | hbono@chromium.org <hbono@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-12-14 10:56:57 +0000 |
---|---|---|
committer | hbono@chromium.org <hbono@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-12-14 10:56:57 +0000 |
commit | 3a2499705153f99cd963f140c6cbbfbb6586f5c4 (patch) | |
tree | a8c43040e935c093389e72d9db09ebd79da4a62f /chrome/worker | |
parent | c76a0de3127d6c105b4a93088a3619ff7692244b (diff) | |
download | chromium_src-3a2499705153f99cd963f140c6cbbfbb6586f5c4.zip chromium_src-3a2499705153f99cd963f140c6cbbfbb6586f5c4.tar.gz chromium_src-3a2499705153f99cd963f140c6cbbfbb6586f5c4.tar.bz2 |
Comments out WorkerTest.FLAKY_LimitTotal on Linux.
Since Build 3442, this test has been causing an error "chrome: Fatal IO error 11 (Resource temporarily unavailable) on X server :9.0" on the "Chromium Linux (x64)" bot, and making the bot hang-up.
To investigate this hang-up, this change temporarily comments out this test on Linux.
TBR=levin
BUG=28445
TEST=none
Review URL: http://codereview.chromium.org/492031
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@34457 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/worker')
-rw-r--r-- | chrome/worker/worker_uitest.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/chrome/worker/worker_uitest.cc b/chrome/worker/worker_uitest.cc index 09d5f31..fe7ebbf 100644 --- a/chrome/worker/worker_uitest.cc +++ b/chrome/worker/worker_uitest.cc @@ -349,6 +349,7 @@ TEST_F(WorkerTest, LimitPerPage) { #endif TEST_F(WorkerTest, LimitTotal) { +#if !defined(OS_LINUX) int max_workers_per_tab = WorkerService::kMaxWorkersPerTabWhenSeparate; int total_workers = WorkerService::kMaxWorkersWhenSeparate; @@ -370,4 +371,5 @@ TEST_F(WorkerTest, LimitTotal) { tab->NavigateToURL(GetTestUrl(L"google", L"google.html")); ASSERT_TRUE(WaitForProcessCountToBe(tab_count, total_workers)); +#endif } |