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

Unified Diff: sky/tools/webkitpy/layout_tests/port/base.py

Issue 786833002: Run sky tests more parallelized. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years 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: sky/tools/webkitpy/layout_tests/port/base.py
diff --git a/sky/tools/webkitpy/layout_tests/port/base.py b/sky/tools/webkitpy/layout_tests/port/base.py
index 9227ac66ad8f23eae644be168942ec75b701cf6c..efcfa6f78f20682280759d98a9baac18b0c02bf6 100644
--- a/sky/tools/webkitpy/layout_tests/port/base.py
+++ b/sky/tools/webkitpy/layout_tests/port/base.py
@@ -270,10 +270,7 @@ class Port(object):
def default_child_processes(self):
"""Return the number of drivers to use for this port."""
- # FIXME: See if we can reduce the denominator here without causing timeouts.
- # Maybe we need to run one sky_shell process and multiple sky_viewers
- # instead of multiple sky_shells
- return int(math.ceil(float(self._executive.cpu_count()) / 4))
+ return self._executive.cpu_count()
def default_max_locked_shards(self):
"""Return the number of "locked" shards to run in parallel (like the http tests)."""
« 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