diff options
author | dglazkov@chromium.org <dglazkov@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-04 17:15:29 +0000 |
---|---|---|
committer | dglazkov@chromium.org <dglazkov@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-04 17:15:29 +0000 |
commit | 414802e4492b5fb96998f0f858108adf0df13d91 (patch) | |
tree | ccb025ff6031589424c4517564f3b28be705cab6 /chrome/worker | |
parent | 54bd145ea8d6f197973a0c60d32bc42c86c91e53 (diff) | |
download | chromium_src-414802e4492b5fb96998f0f858108adf0df13d91.zip chromium_src-414802e4492b5fb96998f0f858108adf0df13d91.tar.gz chromium_src-414802e4492b5fb96998f0f858108adf0df13d91.tar.bz2 |
Temporarily disable all Worker tests.
TBR=jam
BUG=18409
TEST=none
Review URL: http://codereview.chromium.org/159860
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@22385 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/worker')
-rw-r--r-- | chrome/worker/worker_uitest.cc | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/chrome/worker/worker_uitest.cc b/chrome/worker/worker_uitest.cc index 62c618c..567306c 100644 --- a/chrome/worker/worker_uitest.cc +++ b/chrome/worker/worker_uitest.cc @@ -288,15 +288,15 @@ bool WorkerTest::ReadExpectedResult(const FilePath& result_dir_path, expected_result_value); } -TEST_F(WorkerTest, SingleWorker) { +TEST_F(WorkerTest, DISABLED_SingleWorker) { RunTest(L"single_worker.html"); } -TEST_F(WorkerTest, MultipleWorkers) { +TEST_F(WorkerTest, DISABLED_MultipleWorkers) { RunTest(L"multi_worker.html"); } -TEST_F(WorkerTest, WorkerFastLayoutTests) { +TEST_F(WorkerTest, DISABLED_WorkerFastLayoutTests) { static const char* kLayoutTestFiles[] = { "stress-js-execution.html", "use-machine-stack.html", @@ -327,7 +327,7 @@ TEST_F(WorkerTest, WorkerFastLayoutTests) { RunLayoutTest(kLayoutTestFiles[i], false); } -TEST_F(WorkerTest, WorkerHttpLayoutTests) { +TEST_F(WorkerTest, DISABLED_WorkerHttpLayoutTests) { static const char* kLayoutTestFiles[] = { // flakey? BUG 16934 "text-encoding.html", "worker-importScripts.html", @@ -349,7 +349,7 @@ TEST_F(WorkerTest, WorkerHttpLayoutTests) { StopHttpServer(); } -TEST_F(WorkerTest, WorkerXhrHttpLayoutTests) { +TEST_F(WorkerTest, DISABLED_WorkerXhrHttpLayoutTests) { static const char* kLayoutTestFiles[] = { "abort-exception-assert.html", "close.html", @@ -374,7 +374,7 @@ TEST_F(WorkerTest, WorkerXhrHttpLayoutTests) { StopHttpServer(); } -TEST_F(WorkerTest, MessagePorts) { +TEST_F(WorkerTest, DISABLED_MessagePorts) { static const char* kLayoutTestFiles[] = { "message-channel-gc.html", "message-channel-gc-2.html", @@ -403,7 +403,7 @@ TEST_F(WorkerTest, MessagePorts) { RunLayoutTest(kLayoutTestFiles[i], false); } -TEST_F(WorkerTest, LimitPerPage) { +TEST_F(WorkerTest, DISABLED_LimitPerPage) { int max_workers_per_tab = WorkerService::kMaxWorkersPerTabWhenSeparate; GURL url = GetTestUrl(L"workers", L"many_workers.html"); url = GURL(url.spec() + StringPrintf("?count=%d", max_workers_per_tab + 1)); @@ -416,7 +416,7 @@ TEST_F(WorkerTest, LimitPerPage) { UITest::GetBrowserProcessCount()); } -TEST_F(WorkerTest, LimitTotal) { +TEST_F(WorkerTest, DISABLED_LimitTotal) { int max_workers_per_tab = WorkerService::kMaxWorkersPerTabWhenSeparate; int total_workers = WorkerService::kMaxWorkersWhenSeparate; |