[dts] [PATCH V1] tests/multiple_pthread:sort cores

Lewei Yang leweix.yang at intel.com
Thu Sep 16 17:57:38 CEST 2021


From: Yang Lewei <leweix.yang at intel.com>

Sort the cores by size to avoid using the main core to cause the test to fail

Signed-off-by: Lewei Yang <leweix.yang at intel.com>
---
 tests/TestSuite_multiple_pthread.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/tests/TestSuite_multiple_pthread.py b/tests/TestSuite_multiple_pthread.py
index 8d9dc3f7..091e95b0 100644
--- a/tests/TestSuite_multiple_pthread.py
+++ b/tests/TestSuite_multiple_pthread.py
@@ -54,6 +54,7 @@ class TestMultiplePthread(TestCase):
         # get socket and cores
         self.socket = self.dut.get_numa_id(self.dut_ports[0])
         self.cores = self.dut.get_core_list("1S/8C/1T", socket=self.socket)
+        self.cores.sort(key=lambda i: int(i))
         self.verify(self.cores is not None, "Requested 8 cores failed")
         self.out_view = {'header': [], 'data': []}
         self.path=self.dut.apps_name["test-pmd"].rstrip()
-- 
2.17.1



More information about the dts mailing list