git.droids-corp.org
/
dpdk.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1c14c98
)
app: only use one thread to run autotests
author
Intel
<intel.com>
Mon, 3 Jun 2013 00:00:00 +0000
(
00:00
+0000)
committer
Thomas 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
patch
|
blob
|
history
diff --git
a/app/test/autotest_runner.py
b/app/test/autotest_runner.py
index
50e689f
..
15935ed
100644
(file)
--- 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