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

Side by Side Diff: chrome/worker/worker_uitest.cc

Issue 231019: Disable a test that is causing valgrind problems. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 2 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/worker_host/worker_service.h" 5 #include "chrome/browser/worker_host/worker_service.h"
6 #include "chrome/test/automation/browser_proxy.h" 6 #include "chrome/test/automation/browser_proxy.h"
7 #include "chrome/test/automation/tab_proxy.h" 7 #include "chrome/test/automation/tab_proxy.h"
8 #include "chrome/test/ui/ui_layout_test.h" 8 #include "chrome/test/ui/ui_layout_test.h"
9 9
10 static const char kTestCompleteCookie[] = "status"; 10 static const char kTestCompleteCookie[] = "status";
(...skipping 19 matching lines...) Expand all
30 TEST_F(WorkerTest, SingleWorker) { 30 TEST_F(WorkerTest, SingleWorker) {
31 RunTest(L"single_worker.html"); 31 RunTest(L"single_worker.html");
32 } 32 }
33 33
34 TEST_F(WorkerTest, MultipleWorkers) { 34 TEST_F(WorkerTest, MultipleWorkers) {
35 RunTest(L"multi_worker.html"); 35 RunTest(L"multi_worker.html");
36 } 36 }
37 37
38 // WorkerFastLayoutTests works on the linux try servers, but fails on the 38 // WorkerFastLayoutTests works on the linux try servers, but fails on the
39 // build bots. 39 // build bots.
40 #if defined(OS_LINUX) 40 #if !defined(OS_WIN)
41 #define WorkerFastLayoutTests DISABLED_WorkerFastLayoutTests 41 #define WorkerFastLayoutTests DISABLED_WorkerFastLayoutTests
42 #endif 42 #endif
43 43
44 TEST_F(WorkerTest, WorkerFastLayoutTests) { 44 TEST_F(WorkerTest, WorkerFastLayoutTests) {
45 static const char* kLayoutTestFiles[] = { 45 static const char* kLayoutTestFiles[] = {
46 "stress-js-execution.html", 46 "stress-js-execution.html",
47 #if defined(OS_WIN) 47 #if defined(OS_WIN)
48 // Workers don't properly initialize the V8 stack guard. 48 // Workers don't properly initialize the V8 stack guard.
49 // (http://code.google.com/p/chromium/issues/detail?id=21653). 49 // (http://code.google.com/p/chromium/issues/detail?id=21653).
50 "use-machine-stack.html", 50 "use-machine-stack.html",
(...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after
226 UITest::GetBrowserProcessCount()); 226 UITest::GetBrowserProcessCount());
227 227
228 // Now close the first tab and check that the queued workers were started. 228 // Now close the first tab and check that the queued workers were started.
229 tab->Close(true); 229 tab->Close(true);
230 tab->NavigateToURL(GetTestUrl(L"google", L"google.html")); 230 tab->NavigateToURL(GetTestUrl(L"google", L"google.html"));
231 231
232 EXPECT_EQ(total_workers + 1 + (UITest::in_process_renderer() ? 0 : tab_count), 232 EXPECT_EQ(total_workers + 1 + (UITest::in_process_renderer() ? 0 : tab_count),
233 UITest::GetBrowserProcessCount()); 233 UITest::GetBrowserProcessCount());
234 } 234 }
235 #endif 235 #endif
OLDNEW
« 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