From: "zhu,shuai" <shuaix.zhu@intel.com>
To: dts@dpdk.org
Cc: "zhu,shuai" <shuaix.zhu@intel.com>
Subject: [dts] [PATCH V2 3/8] tests/vdev_primary_secondary:Change the relative path to an absolute path.
Date: Fri, 30 Aug 2019 10:40:20 +0800 [thread overview]
Message-ID: <1567132825-101386-3-git-send-email-shuaix.zhu@intel.com> (raw)
In-Reply-To: <1567132825-101386-1-git-send-email-shuaix.zhu@intel.com>
Please ignore the V1 version.
Change the relative path to an absolute path.
Signed-off-by: zhu,shuai <shuaix.zhu@intel.com>
---
tests/TestSuite_vdev_primary_secondary.py | 11 ++++++-----
1 file changed, 6 insertions(+), 5 deletions(-)
diff --git a/tests/TestSuite_vdev_primary_secondary.py b/tests/TestSuite_vdev_primary_secondary.py
index 6f8f235..8b7b899 100644
--- a/tests/TestSuite_vdev_primary_secondary.py
+++ b/tests/TestSuite_vdev_primary_secondary.py
@@ -62,12 +62,13 @@ class TestVdevPrimarySecondary(TestCase):
cores = self.dut.get_core_list("1S/12C/1T", socket=self.ports_socket)
self.coremask = utils.create_mask(cores)
self.verify(len(self.coremask) >= 6, "The machine has too few cores.")
+ self.base_dir = self.dut.base_dir.replace('~', '/root')
def set_up(self):
"""
Run before each test case.
"""
- 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", "#")
@@ -81,7 +82,7 @@ class TestVdevPrimarySecondary(TestCase):
for i in range(self.queues):
vm_params = {}
vm_params['driver'] = 'vhost-user'
- vm_params['opt_path'] = './vhost-net%d' % i
+ vm_params['opt_path'] = self.base_dir + '/vhost-net%d' % i
vm_params['opt_mac'] = "%s%d" % (self.virtio_mac, i+2)
vm_params['opt_queue'] = self.queues
vm_params['opt_server'] = 'server'
@@ -103,10 +104,10 @@ class TestVdevPrimarySecondary(TestCase):
launch testpmd
"""
cmd = "./%s/app/testpmd -l 1-6 -n %d --socket-mem 2048,2048 --legacy-mem --file-prefix=vhost" + \
- " --vdev 'net_vhost0,iface=vhost-net0,queues=%d,client=1'" + \
- " --vdev 'net_vhost1,iface=vhost-net1,queues=%d,client=1'" + \
+ " --vdev 'net_vhost0,iface=%s/vhost-net0,queues=%d,client=1'" + \
+ " --vdev 'net_vhost1,iface=%s/vhost-net1,queues=%d,client=1'" + \
" -- -i --nb-cores=4 --rxq=%d --txq=%d --txd=1024 --rxd=1024"
- start_cmd = cmd % (self.target, self.mem_channels, self.queues, self.queues, self.queues, self.queues)
+ start_cmd = cmd % (self.target, self.mem_channels, self.base_dir, self.queues, self.base_dir, self.queues, self.queues, self.queues)
self.dut.send_expect(start_cmd, "testpmd> ", 120)
self.dut.send_expect("set fwd txonly", "testpmd> ", 120)
self.dut.send_expect("start", "testpmd> ", 120)
--
2.17.2
next prev parent reply other threads:[~2019-08-30 2:36 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-08-30 2:40 [dts] [PATCH V2 1/8] tests/dpdk_gso_lib:Change " zhu,shuai
2019-08-30 2:40 ` [dts] [PATCH V2 2/8] tests/dpdk_gro_lib:Change " zhu,shuai
2019-08-30 2:40 ` zhu,shuai [this message]
2019-08-30 2:40 ` [dts] [PATCH V2 4/8] tests/vhost_event_idx_interrupt:Change " zhu,shuai
2019-08-30 2:40 ` [dts] [PATCH V2 5/8] tests/vhost_multi_queue_qemu:Change " zhu,shuai
2019-08-30 2:40 ` [dts] [PATCH V2 6/8] tests/vhost_pmd_xstats:Change " zhu,shuai
2019-08-30 2:40 ` [dts] [PATCH V2 7/8] tests/vm2vm_virtio_net_perf:Change " zhu,shuai
2019-08-30 2:40 ` [dts] [PATCH V2 8/8] tests/vm2vm_virtio_pmd:Change " zhu,shuai
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=1567132825-101386-3-git-send-email-shuaix.zhu@intel.com \
--to=shuaix.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).