[dts] [PATCH] TestSuite_dynamic_queue.py: max_pools parameter is required for cavium_a064

nareddy at marvell.com nareddy at marvell.com
Fri Aug 9 06:13:59 CEST 2019


From: Praneeth Reddy <nareddy at marvell.com>

To assign tx and rx queues max_pools parameter is required for cavium_a064

Signed-off-by: Praneeth Reddy <nareddy at marvell.com>
---
 tests/TestSuite_dynamic_queue.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tests/TestSuite_dynamic_queue.py b/tests/TestSuite_dynamic_queue.py
index 89373bc..dd05eab 100644
--- a/tests/TestSuite_dynamic_queue.py
+++ b/tests/TestSuite_dynamic_queue.py
@@ -33,7 +33,7 @@ class TestDynamicQueue(TestCase):
             self.dut_testpmd.start_testpmd(
                 "all", "--port-topology=chained --txq=%s --rxq=%s"
                 % (self.PF_QUEUE, self.PF_QUEUE))
-        elif (self.nic in ["cavium_a063"]):
+        elif (self.nic in ["cavium_a063", "cavium_a064"]):
             eal_opts = ""
             for port in self.dut_ports:
                 eal_opts += "-w %s,max_pools=256 "%(self.dut.get_port_pci(self.dut_ports[port]))
@@ -152,7 +152,7 @@ class TestDynamicQueue(TestCase):
             out = self.dut_testpmd.execute_cmd('stop')
             tx_num = qringsize - 1
 
-            if self.nic == "cavium_a063":
+            if (self.nic in ["cavium_a063", "cavium_a064"]):
                 self.verify("TX-packets: 0" in out,
                             "Fail to stop txq at runtime")
             else:
-- 
1.8.3.1



More information about the dts mailing list