test suite reviews and discussions
 help / color / mirror / Atom feed
* [dts] [PATCH V1 1/2] tests/TestSuite_runtime_vf_queue_number:the queue pairs number up to 256 for iavf
@ 2020-12-28  6:57 Xie wei
  2020-12-28  6:57 ` [dts] [PATCH V1 2/2] tests/TestSuite_runtime_vf_queue_number_kernel:the " Xie wei
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Xie wei @ 2020-12-28  6:57 UTC (permalink / raw)
  To: dts; +Cc: Xie wei

as the queue pairs number up to 256 queue pairs per VF, so change 17 to
257 for testing.

Signed-off-by: Xie wei <weix.xie@intel.com>
---
 tests/TestSuite_runtime_vf_queue_number.py | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/tests/TestSuite_runtime_vf_queue_number.py b/tests/TestSuite_runtime_vf_queue_number.py
index 8d8a6f7b..1d7d536c 100644
--- a/tests/TestSuite_runtime_vf_queue_number.py
+++ b/tests/TestSuite_runtime_vf_queue_number.py
@@ -302,10 +302,10 @@ class TestRuntimeVfQn(TestCase):
         outstring = self.vm0_testpmd.execute_cmd(command_0, expected='# ')
         self.verify("Either rx or tx queues should be non-zero" in outstring, "The output of testpmd start is different from expect when set invalid VF queue number 0.")
         time.sleep(2)
-        command_17 = app_name + "-c %s -n %d %s -- -i %s" % ('0xf', self.dut.get_memory_channels(), gest_eal_param, ' --rxq=17 --txq=17')
-        outstring1 = self.vm0_testpmd.execute_cmd(command_17, expected='# ')
-        self.verify("rxq 17 invalid - must be >= 0 && <= 16" in outstring1,
-                    "The output of testpmd start is different from expect when set invalid VF queue number 17.")
+        command_257 = app_name + "-c %s -n %d %s -- -i %s" % ('0xf', self.dut.get_memory_channels(), gest_eal_param, ' --rxq=257 --txq=257')
+        outstring1 = self.vm0_testpmd.execute_cmd(command_257, expected='# ')
+        self.verify("rxq 257 invalid - must be >= 0 && <= 256" in outstring1,
+                    "The output of testpmd start is different from expect when set invalid VF queue number 257.")
 
     def test_set_valid_vf_qn_with_testpmd_func_cmd(self):
         """
@@ -341,14 +341,14 @@ class TestRuntimeVfQn(TestCase):
         :return:
         """
         expect_str = ["Warning: Either rx or tx queues should be non zero",
-                      "Fail: input rxq (17) can't be greater than max_rx_queues (16) of port 0",
-                      "Fail: input txq (17) can't be greater than max_tx_queues (16) of port 0"]
+                      "Fail: input rxq (257) can't be greater than max_rx_queues (256) of port 0",
+                      "Fail: input txq (257) can't be greater than max_tx_queues (256) of port 0"]
         host_eal_param = '-w %s --file-prefix=test1 --socket-mem 1024,1024' % self.pf_pci
         self.host_testpmd.start_testpmd(self.pmdout.default_cores, param='', eal_param=host_eal_param)
         gest_eal_param = '-w %s --file-prefix=test2' % self.vm_dut_0.ports_info[0]['pci']
         self.vm0_testpmd = PmdOutput(self.vm_dut_0)
         self.vm0_testpmd.start_testpmd(self.pmdout.default_cores, eal_param=gest_eal_param, param='')
-        for invalid_qn in [0, 17]:
+        for invalid_qn in [0, 257]:
             self.vm0_testpmd.execute_cmd('port stop all')
             rxq_output = self.vm0_testpmd.execute_cmd('port config all rxq %d' % invalid_qn)
             txq_output = self.vm0_testpmd.execute_cmd('port config all txq %d' % invalid_qn)
-- 
2.17.1


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2020-12-28  7:45 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-12-28  6:57 [dts] [PATCH V1 1/2] tests/TestSuite_runtime_vf_queue_number:the queue pairs number up to 256 for iavf Xie wei
2020-12-28  6:57 ` [dts] [PATCH V1 2/2] tests/TestSuite_runtime_vf_queue_number_kernel:the " Xie wei
2020-12-28  7:00   ` Xie, WeiX
2020-12-28  7:00 ` [dts] [PATCH V1 1/2] tests/TestSuite_runtime_vf_queue_number:the " Xie, WeiX
2020-12-28  7:45 ` Tu, Lijuan

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).