app: only use one thread to run autotests
authorIntel <intel.com>
Mon, 3 Jun 2013 00:00:00 +0000 (00:00 +0000)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Tue, 17 Sep 2013 12:16:09 +0000 (14:16 +0200)
Signed-off-by: Intel
app/test/autotest_runner.py

index 50e689f..15935ed 100644 (file)
@@ -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