From: Intel Date: Mon, 3 Jun 2013 00:00:00 +0000 (+0000) Subject: app: only use one thread to run autotests X-Git-Tag: spdx-start~11198 X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=8184f087dd5755fe584ea3d98f86104ba78ffea3;p=dpdk.git app: only use one thread to run autotests Signed-off-by: Intel --- 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