From 414802e4492b5fb96998f0f858108adf0df13d91 Mon Sep 17 00:00:00 2001 From: "dglazkov@chromium.org" Date: Tue, 4 Aug 2009 17:15:29 +0000 Subject: 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 --- chrome/worker/worker_uitest.cc | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'chrome/worker') 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; -- cgit v1.1