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

Unified Diff: Tools/Scripts/webkitpy/layout_tests/port/port_testcase.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 | « Tools/Scripts/webkitpy/layout_tests/port/base.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Tools/Scripts/webkitpy/layout_tests/port/port_testcase.py
diff --git a/Tools/Scripts/webkitpy/layout_tests/port/port_testcase.py b/Tools/Scripts/webkitpy/layout_tests/port/port_testcase.py
index d79f89a97bde0a4435188ec544780b42742f9424..af8192f6c81f252bbf528f9cc1bd1dfd9ce5c451 100644
--- a/Tools/Scripts/webkitpy/layout_tests/port/port_testcase.py
+++ b/Tools/Scripts/webkitpy/layout_tests/port/port_testcase.py
@@ -145,12 +145,6 @@ class PortTestCase(unittest.TestCase):
num_workers = port.default_child_processes()
self.assertGreaterEqual(num_workers, 1)
- # Test that we reduce the number of workers for sanitizer builds.
- port._options.enable_sanitizer = True
- port.host.executive.cpu_count = lambda: 8
- num_sanitized_workers = port.default_child_processes()
- self.assertLess(num_sanitized_workers, 8)
-
def test_default_max_locked_shards(self):
port = self.make_port()
port.default_child_processes = lambda: 16
« no previous file with comments | « Tools/Scripts/webkitpy/layout_tests/port/base.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698