summaryrefslogtreecommitdiffstats
path: root/chrome/worker
diff options
context:
space:
mode:
authortim@chromium.org <tim@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-11-23 22:04:47 +0000
committertim@chromium.org <tim@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-11-23 22:04:47 +0000
commite3d8526a372d7ae574bdab1564510521f399da8c (patch)
tree21fd61ca8efa25a95e82a8aabe72d9209608611a /chrome/worker
parentbfef1ed533ef824723e83eaa3a5d4dd1add7ba67 (diff)
downloadchromium_src-e3d8526a372d7ae574bdab1564510521f399da8c.zip
chromium_src-e3d8526a372d7ae574bdab1564510521f399da8c.tar.gz
chromium_src-e3d8526a372d7ae574bdab1564510521f399da8c.tar.bz2
Disable more tests causing crashes and failures on LinuxTest(dbg) and valgrind (respectively).
TBR=levin BUG=28445 Review URL: http://codereview.chromium.org/438007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@32862 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/worker')
-rw-r--r--chrome/worker/worker_uitest.cc11
1 files changed, 8 insertions, 3 deletions
diff --git a/chrome/worker/worker_uitest.cc b/chrome/worker/worker_uitest.cc
index b8d9740..2fc6986 100644
--- a/chrome/worker/worker_uitest.cc
+++ b/chrome/worker/worker_uitest.cc
@@ -51,7 +51,9 @@ class WorkerTest : public UILayoutTest {
}
};
-TEST_F(WorkerTest, SingleWorker) {
+
+// Fails running under valgrind, http://crbug.com/28445
+TEST_F(WorkerTest, DISABLED_SingleWorker) {
RunTest(L"single_worker.html");
}
@@ -184,7 +186,9 @@ TEST_F(WorkerTest, WorkerHttpLayoutTests) {
StopHttpServer();
}
-TEST_F(WorkerTest, WorkerXhrHttpLayoutTests) {
+
+// Fails running under valgrind http://crbug.com/28445
+TEST_F(WorkerTest, DISABLED_WorkerXhrHttpLayoutTests) {
static const char* kLayoutTestFiles[] = {
"abort-exception-assert.html",
#if defined(OS_WIN)
@@ -276,7 +280,8 @@ TEST_F(WorkerTest, LimitPerPage) {
}
#endif
-TEST_F(WorkerTest, LimitTotal) {
+// Fails (crashes) on Linux Tests: http://crbug.com/28445
+TEST_F(WorkerTest, DISABLED_LimitTotal) {
int max_workers_per_tab = WorkerService::kMaxWorkersPerTabWhenSeparate;
int total_workers = WorkerService::kMaxWorkersWhenSeparate;