app: only use one thread to run autotests
[dpdk.git] / app / test / autotest_runner.py
index c17d7ad..15935ed 100644 (file)
@@ -2,7 +2,7 @@
 
 #   BSD LICENSE
 # 
-#   Copyright(c) 2010-2012 Intel Corporation. All rights reserved.
+#   Copyright(c) 2010-2013 Intel Corporation. All rights reserved.
 #   All rights reserved.
 # 
 #   Redistribution and use in source and binary forms, with or without 
@@ -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