Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5184)

Unified Diff: chrome/worker/worker_uitest.cc

Issue 159860: Temporarily disable all Worker tests. (Closed) Base URL: svn://chrome-svn.corp.google.com/chrome/trunk/src/
Patch Set: Created 11 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/worker/worker_uitest.cc
===================================================================
--- chrome/worker/worker_uitest.cc (revision 22379)
+++ chrome/worker/worker_uitest.cc (working copy)
@@ -288,15 +288,15 @@
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 @@
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 @@
StopHttpServer();
}
-TEST_F(WorkerTest, WorkerXhrHttpLayoutTests) {
+TEST_F(WorkerTest, DISABLED_WorkerXhrHttpLayoutTests) {
static const char* kLayoutTestFiles[] = {
"abort-exception-assert.html",
"close.html",
@@ -374,7 +374,7 @@
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 @@
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 @@
UITest::GetBrowserProcessCount());
}
-TEST_F(WorkerTest, LimitTotal) {
+TEST_F(WorkerTest, DISABLED_LimitTotal) {
int max_workers_per_tab = WorkerService::kMaxWorkersPerTabWhenSeparate;
int total_workers = WorkerService::kMaxWorkersWhenSeparate;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698