test suite reviews and discussions
 help / color / mirror / Atom feed
From: "Tu, Lijuan" <lijuan.tu@intel.com>
To: "Zhu, ShuaiX" <shuaix.zhu@intel.com>, "dts@dpdk.org" <dts@dpdk.org>
Cc: "Zhu, ShuaiX" <shuaix.zhu@intel.com>
Subject: Re: [dts] [PATCH V1 1/8] tests/vm2vm_virtio_pmd:Change the relative	path to an absolute path.
Date: Tue, 17 Sep 2019 00:48:02 +0000	[thread overview]
Message-ID: <8CE3E05A3F976642AAB0F4675D0AD20E0BB225A5@SHSMSX101.ccr.corp.intel.com> (raw)
In-Reply-To: <1567580621-141003-1-git-send-email-shuaix.zhu@intel.com>

Applied the series, thanks

> -----Original Message-----
> From: dts [mailto:dts-bounces@dpdk.org] On Behalf Of zhu,shuai
> Sent: Wednesday, September 4, 2019 3:04 PM
> To: dts@dpdk.org
> Cc: Zhu, ShuaiX <shuaix.zhu@intel.com>
> Subject: [dts] [PATCH V1 1/8] tests/vm2vm_virtio_pmd:Change the relative
> path to an absolute path.
> 
> From: "Zhu,Shuai" <shuaix.zhu@intel.com>
> 
> Change the relative path to an absolute path.
> 
> Signed-off-by: Zhu,Shuai <shuaix.zhu@intel.com>
> ---
>  tests/TestSuite_vm2vm_virtio_pmd.py | 11 ++++++-----
>  1 file changed, 6 insertions(+), 5 deletions(-)
> 
> diff --git a/tests/TestSuite_vm2vm_virtio_pmd.py
> b/tests/TestSuite_vm2vm_virtio_pmd.py
> index ca97d4d..2db020f 100644
> --- a/tests/TestSuite_vm2vm_virtio_pmd.py
> +++ b/tests/TestSuite_vm2vm_virtio_pmd.py
> @@ -58,6 +58,7 @@ class TestVM2VMVirtioPMD(TestCase):
>          self.memory_channel = self.dut.get_memory_channels()
>          self.vm_num = 2
>          self.dump_pcap = "/root/pdump-rx.pcap"
> +        self.base_dir = self.dut.base_dir.replace('~', '/root')
> 
>      def set_up(self):
>          """
> @@ -68,7 +69,7 @@ class TestVM2VMVirtioPMD(TestCase):
>          self.result_table_create(self.table_header)
>          self.dut.send_expect("killall -s INT testpmd", "#")
>          self.dut.send_expect("killall -s INT qemu-system-x86_64", "#")
> -        self.dut.send_expect("rm -rf ./vhost-net*", "#")
> +        self.dut.send_expect("rm -rf %s/vhost-net*" % self.base_dir,
> + "#")
>          self.vhost = self.dut.new_session(suite="vhost")
>          self.vm_dut = []
>          self.vm = []
> @@ -93,12 +94,12 @@ class TestVM2VMVirtioPMD(TestCase):
>          """
>          self.command_line = self.dut.target + "/app/testpmd -c %s -n %d " + \
>              "--socket-mem 2048,2048 --legacy-mem --no-pci --file-prefix=vhost " +
> \
> -            "--vdev 'net_vhost0,iface=vhost-net0,queues=1' " + \
> -            "--vdev 'net_vhost1,iface=vhost-net1,queues=1' " + \
> +            "--vdev 'net_vhost0,iface=%s/vhost-net0,queues=1' " + \
> +            "--vdev 'net_vhost1,iface=%s/vhost-net1,queues=1' " + \
>              "-- -i --nb-cores=1 --txd=1024 --rxd=1024"
> 
>          self.command_line = self.command_line % (
> -                            self.coremask, self.memory_channel)
> +                            self.coremask, self.memory_channel,
> + self.base_dir, self.base_dir)
>          self.vhost.send_expect(self.command_line, "testpmd> ", 30)
>          self.vhost.send_expect("set fwd mac", "testpmd> ", 30)
>          self.vhost.send_expect("start", "testpmd> ", 30) @@ -151,7 +152,7 @@
> class TestVM2VMVirtioPMD(TestCase):
>              vm_info = VM(self.dut, 'vm%d' % i, 'vhost_sample')
>              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'] = "52:54:00:00:00:0%d" % (i+1)
>              vm_params['opt_settings'] = setting_args
>              vm_info.set_vm_device(**vm_params)
> --
> 2.17.1


      parent reply	other threads:[~2019-09-17  0:48 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-09-04  7:03 zhu,shuai
2019-09-04  7:03 ` [dts] [PATCH V1 2/8] tests/vm2vm_virtio_net_perf:Change " zhu,shuai
2019-09-04  7:03 ` [dts] [PATCH V1 3/8] tests/vhost_pmd_xstats:Change " zhu,shuai
2019-09-04  7:03 ` [dts] [PATCH V1 4/8] tests/vhost_multi_queue_qemu:Change " zhu,shuai
2019-09-04  7:03 ` [dts] [PATCH V1 5/8] tests/vhost_event_idx_interrupt:Change " zhu,shuai
2019-09-04  7:03 ` [dts] [PATCH V1 6/8] tests/vdev_primary_secondary:Change " zhu,shuai
2019-09-04  7:03 ` [dts] [PATCH V1 7/8] tests/dpdk_gro_lib:Change " zhu,shuai
2019-09-04  7:03 ` [dts] [PATCH V1 8/8] tests/dpdk_gso_lib:Change " zhu,shuai
2019-09-17  0:48 ` Tu, Lijuan [this message]

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=8CE3E05A3F976642AAB0F4675D0AD20E0BB225A5@SHSMSX101.ccr.corp.intel.com \
    --to=lijuan.tu@intel.com \
    --cc=dts@dpdk.org \
    --cc=shuaix.zhu@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).