[V1] tests/dynamic_queue: modify dts script to support ICE_25G-E810C_SFP nic

Message ID 20230203160010.355134-1-songx.jiale@intel.com (mailing list archive)
State Accepted
Headers
Series [V1] tests/dynamic_queue: modify dts script to support ICE_25G-E810C_SFP nic |

Checks

Context Check Description
ci/Intel-dts-format-test success Testing OK
ci/Intel-dts-pylama-test success Testing OK
ci/Intel-dts-suite-test success Testing OK

Commit Message

Jiale, SongX Feb. 3, 2023, 4 p.m. UTC
  the default number of mbufs does not support the use of 64 rxqs on the
ice nic with 4 ports at the same time. The default value of mbuf is 171456.
according to the description of testplan, only one port is required for
testing.

Signed-off-by: Song Jiale <songx.jiale@intel.com>
---
 tests/TestSuite_dynamic_queue.py | 1 +
 1 file changed, 1 insertion(+)
  

Comments

Tu, Lijuan March 7, 2023, 3:36 a.m. UTC | #1
On Fri,  3 Feb 2023 16:00:10 +0000, Song Jiale <songx.jiale@intel.com> wrote:
> the default number of mbufs does not support the use of 64 rxqs on the
> ice nic with 4 ports at the same time. The default value of mbuf is 171456.
> according to the description of testplan, only one port is required for
> testing.
> 
> Signed-off-by: Song Jiale <songx.jiale@intel.com>


Applied, thanks
  

Patch

diff --git a/tests/TestSuite_dynamic_queue.py b/tests/TestSuite_dynamic_queue.py
index e6bad6c9..28ab197d 100644
--- a/tests/TestSuite_dynamic_queue.py
+++ b/tests/TestSuite_dynamic_queue.py
@@ -57,6 +57,7 @@  class TestDynamicQueue(TestCase):
                 "Default",
                 "--port-topology=chained --txq=%s --rxq=%s"
                 % (self.PF_QUEUE, self.PF_QUEUE),
+                ports=self.dut_ports[0:1],
             )
 
     def element_strip(self, out, pattern, if_get_from_cfg=False):