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

Unified Diff: bin/cros_au_test_harness.py

Issue 6349021: Do not pregenerate update payloads in parallel. (Closed) Base URL: http://git.chromium.org/git/crosutils.git@master
Patch Set: Created 9 years, 11 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: bin/cros_au_test_harness.py
diff --git a/bin/cros_au_test_harness.py b/bin/cros_au_test_harness.py
index 47d51ad29ec24b5d2cc4925f0b3ad02ccbc39ab5..5e4faf2fe57157b8b31033b064471bb262c7da0d 100755
--- a/bin/cros_au_test_harness.py
+++ b/bin/cros_au_test_harness.py
@@ -911,7 +911,9 @@ def _RunTestsInParallel(parser, options, test_class):
threads.append(unittest.TextTestRunner().run)
args.append(test_case)
- results = _RunParallelJobs(options.jobs, threads, args, print_status=False)
+ # TODO(sosa): Set back to options.jobs once parallel generation is
+ # no longer flaky.
+ results = _RunParallelJobs(1, threads, args, print_status=False)
for test_result in results:
if not test_result.wasSuccessful():
Die('Test harness was not successful')
« 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