summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/core
diff options
context:
space:
mode:
Diffstat (limited to 'meta/lib/oeqa/core')
-rw-r--r--meta/lib/oeqa/core/utils/concurrencytest.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/meta/lib/oeqa/core/utils/concurrencytest.py b/meta/lib/oeqa/core/utils/concurrencytest.py
index 6404cb4668..f050289e61 100644
--- a/meta/lib/oeqa/core/utils/concurrencytest.py
+++ b/meta/lib/oeqa/core/utils/concurrencytest.py
@@ -115,6 +115,9 @@ class ConcurrentTestSuite(unittest.TestSuite):
115 for thread, process_result in threads.values(): 115 for thread, process_result in threads.values():
116 process_result.stop() 116 process_result.stop()
117 raise 117 raise
118 finally:
119 for test in tests:
120 test[0]._stream.close()
118 121
119 def _run_test(self, test, process_result, queue): 122 def _run_test(self, test, process_result, queue):
120 try: 123 try: