From: zhuwenhui <wenhuix.zhu@intel.com>
To: dts@dpdk.org
Cc: zhuwenhui <wenhuix.zhu@intel.com>
Subject: [dts] [PATCH V1 03/17] tests/TestSuite_pvp_multi_paths_performance:vhost-net changed to absolute path
Date: Thu, 29 Aug 2019 16:03:42 +0800 [thread overview]
Message-ID: <1567065836-95440-3-git-send-email-wenhuix.zhu@intel.com> (raw)
In-Reply-To: <1567065836-95440-1-git-send-email-wenhuix.zhu@intel.com>
Vhost-net changed to absolute path
Signed-off-by: zhuwenhui <wenhuix.zhu@intel.com>
---
tests/TestSuite_pvp_multi_paths_performance.py | 11 ++++++-----
1 file changed, 6 insertions(+), 5 deletions(-)
diff --git a/tests/TestSuite_pvp_multi_paths_performance.py b/tests/TestSuite_pvp_multi_paths_performance.py
index b633b98..7000afd 100644
--- a/tests/TestSuite_pvp_multi_paths_performance.py
+++ b/tests/TestSuite_pvp_multi_paths_performance.py
@@ -69,6 +69,7 @@ class TestPVPMultiPathPerformance(TestCase):
self.tester.send_expect('mkdir -p %s' % self.out_path, '# ')
# create an instance to set stream field setting
self.pktgen_helper = PacketGeneratorHelper()
+ self.base_dir = self.dut.base_dir.replace('~', '/root')
def set_up(self):
"""
@@ -123,15 +124,15 @@ class TestPVPMultiPathPerformance(TestCase):
start testpmd on vhost
"""
self.dut.send_expect("rm -rf ./vhost.out", "#")
- self.dut.send_expect("rm -rf ./vhost-net*", "#")
+ self.dut.send_expect("rm -rf %s/vhost-net*" % self.base_dir, "#")
self.dut.send_expect("killall -s INT testpmd", "#")
self.dut.send_expect("killall -s INT qemu-system-x86_64", "#")
command_line_client = "./%s/app/testpmd -n %d -c %s --socket-mem " + \
" %s --legacy-mem -w %s --file-prefix=vhost --vdev " + \
- "'net_vhost0,iface=vhost-net,queues=1,client=0' -- -i --nb-cores=1 --txd=1024 --rxd=1024"
+ "'net_vhost0,iface=%s/vhost-net,queues=1,client=0' -- -i --nb-cores=1 --txd=1024 --rxd=1024"
command_line_client = command_line_client % (self.target,
self.dut.get_memory_channels(), self.core_mask_host,
- self.socket_mem, self.dut.ports_info[self.dut_ports[0]]['pci'])
+ self.socket_mem, self.dut.ports_info[self.dut_ports[0]]['pci'], self.base_dir)
self.vhost.send_expect(command_line_client, "testpmd> ", 120)
self.vhost.send_expect("set fwd mac", "testpmd> ", 120)
self.vhost.send_expect("start", "testpmd> ", 120)
@@ -142,11 +143,11 @@ class TestPVPMultiPathPerformance(TestCase):
"""
command_line_user = "./%s/app/testpmd -n %d -c %s " + \
" --socket-mem %s --legacy-mem --no-pci --file-prefix=virtio " + \
- "--vdev=net_virtio_user0,mac=00:01:02:03:04:05,path=./vhost-net,%s " + \
+ "--vdev=net_virtio_user0,mac=00:01:02:03:04:05,path=%s/vhost-net,%s " + \
"-- -i %s --rss-ip --nb-cores=1 --txd=1024 --rxd=1024"
command_line_user = command_line_user % (self.target,
self.dut.get_memory_channels(), self.core_mask_user,
- self.socket_mem, args["version"], args["path"])
+ self.socket_mem, self.base_dir, args["version"], args["path"])
self.vhost_user = self.dut.new_session(suite="user")
self.vhost_user.send_expect(command_line_user, "testpmd> ", 120)
self.vhost_user.send_expect("set fwd mac", "testpmd> ", 120)
--
2.17.2
next prev parent reply other threads:[~2019-08-29 7:59 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-08-29 8:03 [dts] [PATCH V1 01/17] tests/pvp_multi_paths_vhost_single_core_performance:vhost-net " zhuwenhui
2019-08-29 8:03 ` [dts] [PATCH V1 02/17] tests/pvp_multi_paths_virtio_single_core_performance:vhost-net " zhuwenhui
2019-08-29 8:03 ` zhuwenhui [this message]
2019-08-29 8:03 ` [dts] [PATCH V1 04/17] tests/pvp_qemu_multi_paths_port_restart:vhost-net " zhuwenhui
2019-08-29 8:03 ` [dts] [PATCH V1 05/17] tests/TestSuite_pvp_diff_qemu_version:vhost-net " zhuwenhui
2019-08-29 8:03 ` [dts] [PATCH V1 06/17] tests/vhost_virtio_pmd_interrupt:vhost-net " zhuwenhui
2019-08-29 8:03 ` [dts] [PATCH V1 07/17] tests/virtio_event_idx_interrupt:vhost-net " zhuwenhui
2019-08-29 8:03 ` [dts] [PATCH V1 08/17] tests/vhost_dequeue_zero_copy:vhost-net " zhuwenhui
2019-08-29 8:03 ` [dts] [PATCH V1 09/17] tests/pvp_virtio_user_multi_queues:vhost-net " zhuwenhui
2019-08-29 8:03 ` [dts] [PATCH V1 10/17] tests/pvp_vhost_user_built_in_net_driver:vhost-net " zhuwenhui
2019-08-29 8:03 ` [dts] [PATCH V1 11/17] tests/pvp_share_lib:vhost-net " zhuwenhui
2019-08-29 8:03 ` [dts] [PATCH V1 12/17] tests/pvp_virtio_user_2M_hugepages:vhost-net " zhuwenhui
2019-08-29 8:03 ` [dts] [PATCH V1 13/17] tests/virtio_user_for_container_networking:vhost-net " zhuwenhui
2019-08-29 8:03 ` [dts] [PATCH V1 14/17] tests/pvp_vhost_user_reconnect:vhost-net " zhuwenhui
2019-08-29 8:03 ` [dts] [PATCH V1 15/17] tests/pvp_virtio_bonding:vhost-net " zhuwenhui
2019-08-29 8:03 ` [dts] [PATCH V1 16/17] tests/pvp_virtio_user_4k_pages:vhost-net " zhuwenhui
2019-08-29 8:03 ` [dts] [PATCH V1 17/17] tests/virtio_pvp_regression:vhost-net " zhuwenhui
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=1567065836-95440-3-git-send-email-wenhuix.zhu@intel.com \
--to=wenhuix.zhu@intel.com \
--cc=dts@dpdk.org \
/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).