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

Unified Diff: Tools/Scripts/webkitpy/layout_tests/port/base.py

Issue 722193002: Do not reduce the number of layout_test workers in *SAN builds. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 1 month 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 | Tools/Scripts/webkitpy/layout_tests/port/port_testcase.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Tools/Scripts/webkitpy/layout_tests/port/base.py
diff --git a/Tools/Scripts/webkitpy/layout_tests/port/base.py b/Tools/Scripts/webkitpy/layout_tests/port/base.py
index 6131e57a68b63d8296b65e0d9191b89795aa7fba..56fd3593635ec2357c4b6540abb8591d60894e30 100644
--- a/Tools/Scripts/webkitpy/layout_tests/port/base.py
+++ b/Tools/Scripts/webkitpy/layout_tests/port/base.py
@@ -270,10 +270,6 @@ class Port(object):
def default_child_processes(self):
"""Return the number of drivers to use for this port."""
- if self.get_option('enable_sanitizer'):
- # ASAN/MSAN/TSAN are more cpu- and memory- intensive than regular
- # content_shell, and so we need to run fewer of them in parallel.
- return max(int(self._executive.cpu_count() * 0.75), 1)
return self._executive.cpu_count()
def default_max_locked_shards(self):
« no previous file with comments | « no previous file | Tools/Scripts/webkitpy/layout_tests/port/port_testcase.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698