From 8184f087dd5755fe584ea3d98f86104ba78ffea3 Mon Sep 17 00:00:00 2001 From: Intel Date: Mon, 3 Jun 2013 00:00:00 +0000 Subject: [PATCH] app: only use one thread to run autotests Signed-off-by: Intel --- app/test/autotest_runner.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/test/autotest_runner.py b/app/test/autotest_runner.py index 50e689fdd0..15935edd39 100644 --- a/app/test/autotest_runner.py +++ b/app/test/autotest_runner.py @@ -340,7 +340,7 @@ class AutotestRunner: # create a pool of worker threads if not "baremetal" in self.target: - pool = multiprocessing.Pool(processes=4) + pool = multiprocessing.Pool(processes=1) else: # we can't be sure running baremetal tests in parallel # will work, so let's stay on the safe side -- 2.20.1