[dts] [PATCH V1] tests/vm2vm_virtio_user:add create_eal_parameters function.

zhu,shuai shuaix.zhu at intel.com
Tue Feb 25 10:32:31 CET 2020



Signed-off-by: zhu,shuai <shuaix.zhu at intel.com>
---
 tests/TestSuite_vm2vm_virtio_user.py | 14 ++++++--------
 1 file changed, 6 insertions(+), 8 deletions(-)

diff --git a/tests/TestSuite_vm2vm_virtio_user.py b/tests/TestSuite_vm2vm_virtio_user.py
index 17bee0e..a9fed78 100644
--- a/tests/TestSuite_vm2vm_virtio_user.py
+++ b/tests/TestSuite_vm2vm_virtio_user.py
@@ -118,10 +118,10 @@ class TestVM2VMVirtioUser(TestCase):
             vdev_params += "--vdev 'net_vhost%d,iface=./vhost-net%d,queues=1' " % (i, i)
 
         self.command_line = self.dut.target + '/app/testpmd %s ' + \
-            '--socket-mem %s %s -- -i --nb-cores=1 --no-flush-rx'
+            '%s -- -i --nb-cores=1 --no-flush-rx'
 
         self.command_line = self.command_line % (
-                            eal_params, self.socket_mem, vdev_params)
+                            eal_params, vdev_params)
         self.pmd_vhost.execute_cmd(self.command_line, timeout=30)
         self.pmd_vhost.execute_cmd('set fwd %s' % fwd_mode)
 
@@ -133,9 +133,8 @@ class TestVM2VMVirtioUser(TestCase):
                 no_pci=True, prefix=self.virtio_prefix, fixed_prefix=True)
         vdev_params = '--vdev=net_virtio_user1,mac=00:01:02:03:04:05,path=./vhost-net1,queues=1,%s ' % path_mode
         command_line = self.dut.target + "/app/testpmd %s " + \
-            "--socket-mem %s %s -- -i --nb-cores=1 --txd=256 --rxd=256 %s"
-        command_line = command_line % (eal_params, self.socket_mem,
-                                    vdev_params, extern_params)
+            "%s -- -i --nb-cores=1 --txd=256 --rxd=256 %s"
+        command_line = command_line % (eal_params, vdev_params, extern_params)
         self.pmd_virtio1.execute_cmd(command_line, timeout=30)
         self.pmd_virtio1.execute_cmd('set fwd rxonly')
         self.pmd_virtio1.execute_cmd('start')
@@ -149,9 +148,8 @@ class TestVM2VMVirtioUser(TestCase):
                 no_pci=True, prefix='virtio0')
         vdev_params = '--vdev=net_virtio_user0,mac=00:01:02:03:04:05,path=./vhost-net0,queues=1,%s ' % path_mode
         command_line = self.dut.target + '/app/testpmd %s ' + \
-            '--socket-mem %s %s -- -i --nb-cores=1 --txd=256 --rxd=256 %s'
-        command_line = command_line % (eal_params, self.socket_mem,
-                                vdev_params, extern_params)
+            '%s -- -i --nb-cores=1 --txd=256 --rxd=256 %s'
+        command_line = command_line % (eal_params, vdev_params, extern_params)
 
         self.pmd_virtio0.execute_cmd(command_line, timeout=30)
         self.pmd_virtio0.execute_cmd('set burst 1')
-- 
2.17.2



More information about the dts mailing list