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

Unified Diff: content/worker/test/worker_uitest.cc

Issue 9452041: Re-Disabling WorkerTest.LimitTotal on Windows. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 10 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: content/worker/test/worker_uitest.cc
diff --git a/content/worker/test/worker_uitest.cc b/content/worker/test/worker_uitest.cc
index 2eb21f09d472743faaf9b47da6b7410019d53f46..9180223a2754c792c69cfc0570be21de50c8f943 100644
--- a/content/worker/test/worker_uitest.cc
+++ b/content/worker/test/worker_uitest.cc
@@ -489,7 +489,13 @@ TEST_F(WorkerTest, LimitPerPage) {
ASSERT_TRUE(WaitForProcessCountToBe(1, max_workers_per_tab));
}
-TEST_F(WorkerTest, LimitTotal) {
+// http://crbug.com/36800
+#if defined(OS_WIN)
+#define MAYBE_LimitTotal DISABLE_LimitTotal
+#else
+#define MAYBE_LimitTotal LimitTotal
+#endif // defined(OS_WIN)
+TEST_F(WorkerTest, MAYBE_LimitTotal) {
int max_workers_per_tab = WorkerServiceImpl::kMaxWorkersPerTabWhenSeparate;
int total_workers = WorkerServiceImpl::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