test suite reviews and discussions
 help / color / mirror / Atom feed
* [dts] [PATCH V1 1/9] tests/vhost_1024_ethports:add create_eal_parameters function.
@ 2020-01-18  8:38 zhu,shuai
  2020-01-18  8:38 ` [dts] [PATCH V1 2/9] tests/vhost_enqueue_interrupt:add " zhu,shuai
                   ` (8 more replies)
  0 siblings, 9 replies; 10+ messages in thread
From: zhu,shuai @ 2020-01-18  8:38 UTC (permalink / raw)
  To: dts; +Cc: yinan.wang, zhu,shuai

add create_eal_parameters function.

Signed-off-by: zhu,shuai <shuaix.zhu@intel.com>
---
 tests/TestSuite_vhost_1024_ethports.py | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/tests/TestSuite_vhost_1024_ethports.py b/tests/TestSuite_vhost_1024_ethports.py
index 0c14e8d..2a0bce8 100644
--- a/tests/TestSuite_vhost_1024_ethports.py
+++ b/tests/TestSuite_vhost_1024_ethports.py
@@ -50,7 +50,7 @@ class TestVhost1024Ethports(TestCase):
         self.verify(len(self.dut_ports) >= 1, 'Insufficient ports for testing')
         self.mem_channels = self.dut.get_memory_channels()
         cores = self.dut.get_core_list("1S/2C/1T")
-        self.coremask = utils.create_mask(cores)
+        self.pci_info = self.dut.ports_info[0]['pci']
         self.build_user_dpdk()
 
     def set_up(self):
@@ -78,9 +78,8 @@ class TestVhost1024Ethports(TestCase):
         command_line_vdev = ''
         for ethport in range(self.max_ethport):
             command_line_vdev += '--vdev "eth_vhost%d,iface=vhost-net%d,queues=%d" ' %(ethport, ethport, self.queue)
-        command_line_argument = '/app/testpmd -c %s -n %d --socket-mem 10240,10240 '\
-                        '--file-prefix=vhost ' %(self.coremask, self.mem_channels)
-        command_line_client = self.dut.target + command_line_argument + command_line_vdev + '-- -i'
+        eal_params = self.dut.create_eal_parameters(cores="1S/2C/1T", prefix='vhost', ports=[self.pci_info])
+        cmd = self.dut.target + '/app/testpmd ' + eal_params + command_line_vdev + ' -- -i'
         try:
             out = self.vhost_user.send_expect(command_line_client, 'testpmd> ', 120)
         except Exception as e:
-- 
2.17.2


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

end of thread, other threads:[~2020-01-19  8:35 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-01-18  8:38 [dts] [PATCH V1 1/9] tests/vhost_1024_ethports:add create_eal_parameters function zhu,shuai
2020-01-18  8:38 ` [dts] [PATCH V1 2/9] tests/vhost_enqueue_interrupt:add " zhu,shuai
2020-01-18  8:38 ` [dts] [PATCH V1 3/9] tests/vhost_event_idx_interrupt:add " zhu,shuai
2020-01-18  8:38 ` [dts] [PATCH V1 4/9] tests/vhost_multi_queue_qemu:add " zhu,shuai
2020-01-18  8:38 ` [dts] [PATCH V1 5/9] tests/vhost_pmd_xstats:add " zhu,shuai
2020-01-18  8:38 ` [dts] [PATCH V1 6/9] tests/vhost_virtio_user_interrupt:add " zhu,shuai
2020-01-18  8:38 ` [dts] [PATCH V1 7/9] tests/vhost_virtio_pmd_interrupt:add " zhu,shuai
2020-01-18  8:38 ` [dts] [PATCH V1 8/9] tests/vhost_user_live_migration:add " zhu,shuai
2020-01-18  8:38 ` [dts] [PATCH V1 9/9] tests/vhost_dequeue_zero_copy:add " zhu,shuai
2020-01-19  8:35 ` [dts] [PATCH V1 1/9] tests/vhost_1024_ethports:add " 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).