test suite reviews and discussions
 help / color / mirror / Atom feed
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 06/15] tests/vhost_virtio_user_interrupt:Change the relative path to an absolute path.
Date: Thu, 29 Aug 2019 15:16:46 +0800	[thread overview]
Message-ID: <1567063015-92659-6-git-send-email-shuaix.zhu@intel.com> (raw)
In-Reply-To: <1567063015-92659-1-git-send-email-shuaix.zhu@intel.com>

Change the relative path to an absolute path.

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

diff --git a/tests/TestSuite_vhost_virtio_user_interrupt.py b/tests/TestSuite_vhost_virtio_user_interrupt.py
index 5422e04..e4048ca 100644
--- a/tests/TestSuite_vhost_virtio_user_interrupt.py
+++ b/tests/TestSuite_vhost_virtio_user_interrupt.py
@@ -62,6 +62,7 @@ class TestVirtioUserInterrupt(TestCase):
         self.prepare_l3fwd_power()
         self.tx_port = self.tester.get_local_port(self.dut_ports[0])
         self.tx_interface = self.tester.get_interface(self.tx_port)
+        self.base_dir = self.dut.base_dir.replace('~', '/root')
 
     def set_up(self):
         """
@@ -69,7 +70,7 @@ class TestVirtioUserInterrupt(TestCase):
         """
         self.dut.send_expect("killall -s INT testpmd", "#")
         self.dut.send_expect("killall -s INT l3fwd-power", "#")
-        self.dut.send_expect("rm -rf vhost-net*", "#")
+        self.dut.send_expect("rm -rf %s/vhost-net*" % self.base_dir, "#")
 
         self.l3fwd = self.dut.new_session(suite="l3fwd")
         self.vhost = self.dut.new_session(suite="vhost")
@@ -115,10 +116,10 @@ class TestVirtioUserInterrupt(TestCase):
         cmd_vhost_user = self.dut.target + "/app/testpmd -n %d -c %s " + \
               "--socket-mem 1024,1024 --legacy-mem %s " + \
               "--file-prefix=vhost " + \
-              "--vdev 'net_vhost0,iface=vhost-net,queues=1,client=0' " + \
+              "--vdev 'net_vhost0,iface=%s/vhost-net,queues=1,client=0' " + \
               "-- -i --rxq=1 --txq=1"
         cmd_vhost_user = cmd_vhost_user % (self.mem_channel,
-                self.core_mask_vhost, pci)
+                self.core_mask_vhost, pci, self.base_dir)
 
         self.vhost.send_expect(cmd_vhost_user, "testpmd>", 30)
         self.vhost.send_expect("set fwd mac", "testpmd>", 30)
@@ -131,10 +132,10 @@ class TestVirtioUserInterrupt(TestCase):
         cmd_virtio_user = self.dut.target + "/app/testpmd -n %d -c %s " + \
                         " --socket-mem 1024,1024 --legacy-mem --no-pci " + \
                         "--file-prefix=virtio " + \
-                        " --vdev=net_virtio_user0,mac=00:01:02:03:04:05,path=./vhost-net" + \
+                        " --vdev=net_virtio_user0,mac=00:01:02:03:04:05,path=%s/vhost-net" + \
                         " -- -i --txd=512 --rxd=128 --tx-offloads=0x00"
         cmd_virtio_user = cmd_virtio_user % (self.mem_channel,
-                        self.core_mask_virtio)
+                        self.core_mask_virtio, self.base_dir)
 
         self.virtio.send_expect(cmd_virtio_user, "testpmd>", 120)
         self.virtio.send_expect("set fwd mac", "testpmd>", 20)
@@ -185,7 +186,7 @@ class TestVirtioUserInterrupt(TestCase):
         Check the virtio-user interrupt can work when use vhost-user as backend
         """
         self.start_vhost_testpmd(pci="")
-        self.launch_l3fwd(path="./vhost-net")
+        self.launch_l3fwd(path="%s/vhost-net" % self.base_dir)
         # double check the status of interrupt core
         for i in range(2):
             self.tester.scapy_append('pk=[Ether(dst="52:54:00:00:00:01")/IP()/("X"*64)]')
-- 
2.17.2


  parent reply	other threads:[~2019-08-29  7:12 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-08-29  7:16 [dts] [PATCH V1 01/15] tests/virtio_user_as_exceptional_path:Change " zhu,shuai
2019-08-29  7:16 ` [dts] [PATCH V1 02/15] tests/loopback_virtio_user_server_mode:Change " zhu,shuai
2019-08-29  7:16 ` [dts] [PATCH V1 03/15] tests/loopback_multi_queues:Change " zhu,shuai
2019-08-29  7:16 ` [dts] [PATCH V1 04/15] tests/loopback_multi_paths_port_restart:Change " zhu,shuai
2019-08-29  7:16 ` [dts] [PATCH V1 05/15] tests/vhost_enqueue_interrupt:Change " zhu,shuai
2019-08-29  7:16 ` zhu,shuai [this message]
2019-08-29  7:16 ` [dts] [PATCH V1 07/15] tests/vhost_event_idx_interrupt:Change " zhu,shuai
2019-08-29  7:16 ` [dts] [PATCH V1 08/15] tests/vm2vm_virtio_pmd:Change " zhu,shuai
2019-08-29  7:16 ` [dts] [PATCH V1 09/15] tests/vm2vm_virtio_net_perf:Change " zhu,shuai
2019-08-29  7:16 ` [dts] [PATCH V1 10/15] tests/vhost_multi_queue_qemu:Change " zhu,shuai
2019-08-29  7:16 ` [dts] [PATCH V1 11/15] tests/vhost_1024_ethports:Change " zhu,shuai
2019-08-29  7:16 ` [dts] [PATCH V1 12/15] tests/vdev_primary_secondary:Change " zhu,shuai
2019-08-29  7:16 ` [dts] [PATCH V1 13/15] tests/dpdk_gso_lib:Change " zhu,shuai
2019-08-29  7:16 ` [dts] [PATCH V1 14/15] tests/dpdk_gro_lib:Change " zhu,shuai
2019-08-29  7:16 ` [dts] [PATCH V1 15/15] tests/vhost_pmd_xstats: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=1567063015-92659-6-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).