From 19ef17732c2c3b6944b12cc3cf888237ccfeb8a1 Mon Sep 17 00:00:00 2001 From: Chris Sosa Date: Tue, 1 Feb 2011 09:57:29 -0800 Subject: [PATCH] Do not pregenerate update payloads in parallel. TBR dgarret Change-Id: I71ef4b02108f43717e4bc404290952df99112654 BUG=n0ne TEST=NA Review URL: http://codereview.chromium.org/6349021 --- bin/cros_au_test_harness.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/bin/cros_au_test_harness.py b/bin/cros_au_test_harness.py index 47d51ad29e..5e4faf2fe5 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')