From: "zhu,shuai" <shuaix.zhu@intel.com>
To: dts@dpdk.org
Cc: yinan.wang@intel.com, "zhu,shuai" <shuaix.zhu@intel.com>
Subject: [dts] [PATCH V1] tests/vm2vm_virtio_net_perf:add create_eal_parameters function.
Date: Tue, 25 Feb 2020 17:32:29 +0800 [thread overview]
Message-ID: <1582623151-18473-4-git-send-email-shuaix.zhu@intel.com> (raw)
In-Reply-To: <1582623151-18473-1-git-send-email-shuaix.zhu@intel.com>
Signed-off-by: zhu,shuai <shuaix.zhu@intel.com>
---
tests/TestSuite_vm2vm_virtio_net_perf.py | 17 ++++++-----------
1 file changed, 6 insertions(+), 11 deletions(-)
diff --git a/tests/TestSuite_vm2vm_virtio_net_perf.py b/tests/TestSuite_vm2vm_virtio_net_perf.py
index 13640a3..cc48905 100644
--- a/tests/TestSuite_vm2vm_virtio_net_perf.py
+++ b/tests/TestSuite_vm2vm_virtio_net_perf.py
@@ -84,17 +84,12 @@ class TestVM2VMVirtioNetPerf(TestCase):
zerocopy_arg = ",dequeue-zero-copy=1"
else:
zerocopy_arg = ""
- eal_params = self.dut.create_eal_parameters(cores=self.cores_list,
- prefix='vhost', no_pci=True)
- self.command_line = self.dut.target + "/app/testpmd %s " + \
- "--socket-mem %s --legacy-mem " + \
- "--vdev 'net_vhost0,iface=%s/vhost-net0,queues=1%s' " + \
- "--vdev 'net_vhost1,iface=%s/vhost-net1,queues=1%s' " + \
- "-- -i --nb-cores=1 --txd=1024 --rxd=1024"
-
- self.command_line = self.command_line % (
- eal_params, self.socket_mem, self.base_dir,
- zerocopy_arg, self.base_dir, zerocopy_arg)
+ testcmd = self.dut.target + "/app/testpmd "
+ vdev1 = "--vdev 'net_vhost0,iface=%s/vhost-net0,queues=1%s' " % (self.base_dir, zerocopy_arg)
+ vdev2 = "--vdev 'net_vhost1,iface=%s/vhost-net1,queues=1%s' " % (self.base_dir, zerocopy_arg)
+ eal_params = self.dut.create_eal_parameters(cores=self.cores_list, prefix='vhost', no_pci=True)
+ para = " -- -i --nb-cores=1 --txd=1024 --rxd=1024"
+ self.command_line = testcmd + eal_params + vdev1 + vdev2 + para
self.pmd_vhost.execute_cmd(self.command_line, timeout=30)
self.pmd_vhost.execute_cmd('start', timeout=30)
--
2.17.2
next prev parent reply other threads:[~2020-02-25 9:27 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-02-25 9:32 [dts] [PATCH V1] tests/vdev_primary_secondary:add " zhu,shuai
2020-02-25 9:32 ` [dts] [PATCH V1] tests/virtio_event_idx_interrupt:add " zhu,shuai
2020-02-27 9:50 ` Zhu, ShuaiX
2020-03-03 5:24 ` Tu, Lijuan
2020-02-25 9:32 ` [dts] [PATCH V1] tests/virtio_user_as_exceptional_path:add " zhu,shuai
2020-02-25 9:32 ` zhu,shuai [this message]
2020-02-27 9:49 ` [dts] [PATCH V1] tests/vm2vm_virtio_net_perf:add " Zhu, ShuaiX
2020-03-03 5:24 ` Tu, Lijuan
2020-02-25 9:32 ` [dts] [PATCH V1] tests/vm2vm_virtio_pmd:add " zhu,shuai
2020-02-25 9:32 ` [dts] [PATCH V1] tests/vm2vm_virtio_user:add " zhu,shuai
2020-02-27 9:49 ` [dts] [PATCH V1] tests/vdev_primary_secondary:add " Zhu, ShuaiX
2020-03-03 5:24 ` Tu, Lijuan
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1582623151-18473-4-git-send-email-shuaix.zhu@intel.com \
--to=shuaix.zhu@intel.com \
--cc=dts@dpdk.org \
--cc=yinan.wang@intel.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).