[V4] tests/loopback_virtio_user_server_mode:modify execute virtio-user server side testpmd command after client side started

Message ID 20210202143306.3877778-1-weix.ling@intel.com (mailing list archive)
State Accepted
Headers
Series [V4] tests/loopback_virtio_user_server_mode:modify execute virtio-user server side testpmd command after client side started |

Commit Message

Ling, WeiX Feb. 2, 2021, 2:33 p.m. UTC
  v1:
In DPDK 9af79db20f4cf, when launch virtio-user testpmd as server mode,
virtio-user server side testpmd expected character will be 
'wait for client side started...', after client side started, 
it change to 'testpmd>', so dts need modify execute virtio-user server
side testpmd command after client side started.

v2:
Fix comments about dpdk commit description error dut to checkpatch error.

v3:
Fix comments about dpdk commit description error dut to checkpatch error.

v4:
Fix comments about dpdk commit description error dut to checkpatch error.

Signed-off-by: Ling Wei <weix.ling@intel.com>
---
 tests/TestSuite_loopback_virtio_user_server_mode.py | 13 ++++++++-----
 1 file changed, 8 insertions(+), 5 deletions(-)
  

Comments

Ling, WeiX Feb. 2, 2021, 6:41 a.m. UTC | #1
Tested-by: Wei Ling <weix.ling@intel.com>

Regards,
Ling Wei

> -----Original Message-----
> From: Ling Wei <weix.ling@intel.com>
> Sent: Tuesday, February 2, 2021 10:33 PM
> To: dts@dpdk.org
> Cc: Ling, WeiX <weix.ling@intel.com>
> Subject: [dts][PATCH V4] tests/loopback_virtio_user_server_mode:modify
> execute virtio-user server side testpmd command after client side started
  
Wang, Yinan Feb. 2, 2021, 1:48 p.m. UTC | #2
Acked-by: Wang, Yinan <yinan.wang@intel.com>

> -----Original Message-----
> From: dts <dts-bounces@dpdk.org> On Behalf Of Ling, WeiX
> Sent: 2021?2?2? 14:41
> To: Ling, WeiX <weix.ling@intel.com>; dts@dpdk.org
> Subject: Re: [dts] [PATCH V4]
> tests/loopback_virtio_user_server_mode:modify execute virtio-user server
> side testpmd command after client side started
> 
> Tested-by: Wei Ling <weix.ling@intel.com>
> 
> Regards,
> Ling Wei
> 
> > -----Original Message-----
> > From: Ling Wei <weix.ling@intel.com>
> > Sent: Tuesday, February 2, 2021 10:33 PM
> > To: dts@dpdk.org
> > Cc: Ling, WeiX <weix.ling@intel.com>
> > Subject: [dts][PATCH V4] tests/loopback_virtio_user_server_mode:modify
> > execute virtio-user server side testpmd command after client side started
  
Tu, Lijuan Feb. 3, 2021, 6:25 a.m. UTC | #3
> v1:
> In DPDK 9af79db20f4cf, when launch virtio-user testpmd as server mode, virtio-
> user server side testpmd expected character will be 'wait for client side
> started...', after client side started, it change to 'testpmd>', so dts need modify
> execute virtio-user server side testpmd command after client side started.
> 
> v2:
> Fix comments about dpdk commit description error dut to checkpatch error.
> 
> v3:
> Fix comments about dpdk commit description error dut to checkpatch error.
> 
> v4:
> Fix comments about dpdk commit description error dut to checkpatch error.
> 
> Signed-off-by: Ling Wei <weix.ling@intel.com>

Applied
  

Patch

diff --git a/tests/TestSuite_loopback_virtio_user_server_mode.py b/tests/TestSuite_loopback_virtio_user_server_mode.py
index 9801175..0178ca3 100644
--- a/tests/TestSuite_loopback_virtio_user_server_mode.py
+++ b/tests/TestSuite_loopback_virtio_user_server_mode.py
@@ -92,7 +92,7 @@  class TestLoopbackVirtioUserServerMode(TestCase):
         out = self.dut.send_expect("cat /proc/meminfo |grep Hugepagesize|awk '{print($2)}'", "# ")
         return True if out == '2048' else False
 
-    def lanuch_virtio_user_testpmd(self, args):
+    def lanuch_virtio_user_testpmd(self, args, set_fwd_mac=True, expected='testpmd> '):
         """
         start testpmd of vhost user
         """
@@ -103,8 +103,9 @@  class TestLoopbackVirtioUserServerMode(TestCase):
             eal_param += " --force-max-simd-bitwidth=512"
         param = "--rxq=1 --txq=1 --no-numa"
         self.virtio_user_pmd.start_testpmd(cores=self.core_list_user, param=param, eal_param=eal_param, \
-                no_pci=True, ports=[], prefix="virtio", fixed_prefix=True)
-        self.virtio_user_pmd.execute_cmd("set fwd mac", "testpmd> ", 120)
+                no_pci=True, ports=[], prefix="virtio", fixed_prefix=True, expected=expected)
+        if set_fwd_mac:
+            self.virtio_user_pmd.execute_cmd("set fwd mac", "testpmd> ", 120)
 
     def lanuch_vhost_testpmd_with_multi_queue(self, extern_params=""):
         """
@@ -251,8 +252,9 @@  class TestLoopbackVirtioUserServerMode(TestCase):
         self.nb_cores = 1
         virtio_pmd_arg = {"version": "packed_vq=0,in_order=0,mrg_rxbuf=1",
                           "path": "--tx-offloads=0x0 --enable-hw-vlan-strip"}
-        self.lanuch_virtio_user_testpmd(virtio_pmd_arg)
+        self.lanuch_virtio_user_testpmd(virtio_pmd_arg, set_fwd_mac=False, expected='waiting for client connection...')
         self.lanuch_vhost_testpmd()
+        self.virtio_user_pmd.execute_cmd("set fwd mac", "testpmd> ", 120)
         self.start_to_send_packets(self.virtio_user, self.vhost)
         self.calculate_avg_throughput("lanuch virtio first", "")
         self.result_table_print()
@@ -266,8 +268,9 @@  class TestLoopbackVirtioUserServerMode(TestCase):
         self.nb_cores = 1
         virtio_pmd_arg = {"version": "packed_vq=1,in_order=0,mrg_rxbuf=1",
                           "path": "--tx-offloads=0x0 --enable-hw-vlan-strip"}
-        self.lanuch_virtio_user_testpmd(virtio_pmd_arg)
+        self.lanuch_virtio_user_testpmd(virtio_pmd_arg, set_fwd_mac=False, expected='waiting for client connection...')
         self.lanuch_vhost_testpmd()
+        self.virtio_user_pmd.execute_cmd("set fwd mac", "testpmd> ", 120)
         self.start_to_send_packets(self.virtio_user, self.vhost)
         self.calculate_avg_throughput("lanuch virtio first", "")
         self.result_table_print()