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: "Wang, Yinan" <yinan.wang@intel.com>,
	"Zhu, ShuaiX" <shuaix.zhu@intel.com>
Subject: Re: [dts] [PATCH V1] tests/vdev_primary_secondary:add	create_eal_parameters function.
Date: Tue, 3 Mar 2020 05:24:38 +0000	[thread overview]
Message-ID: <8CE3E05A3F976642AAB0F4675D0AD20E0BBE8E3E@SHSMSX101.ccr.corp.intel.com> (raw)
In-Reply-To: <1582623151-18473-1-git-send-email-shuaix.zhu@intel.com>

Applied, thanks

> -----Original Message-----
> From: dts [mailto:dts-bounces@dpdk.org] On Behalf Of zhu,shuai
> Sent: Tuesday, February 25, 2020 5:32 PM
> To: dts@dpdk.org
> Cc: Wang, Yinan <yinan.wang@intel.com>; Zhu, ShuaiX
> <shuaix.zhu@intel.com>
> Subject: [dts] [PATCH V1] tests/vdev_primary_secondary:add
> create_eal_parameters function.
> 
> 
> 
> Signed-off-by: zhu,shuai <shuaix.zhu@intel.com>
> ---
>  tests/TestSuite_vdev_primary_secondary.py | 12 +++++++-----
>  1 file changed, 7 insertions(+), 5 deletions(-)
> 
> diff --git a/tests/TestSuite_vdev_primary_secondary.py
> b/tests/TestSuite_vdev_primary_secondary.py
> index c380bec..7c557ad 100644
> --- a/tests/TestSuite_vdev_primary_secondary.py
> +++ b/tests/TestSuite_vdev_primary_secondary.py
> @@ -63,6 +63,7 @@ class TestVdevPrimarySecondary(TestCase):
>          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')
> +        self.pci_info = self.dut.ports_info[0]['pci']
> 
>      def set_up(self):
>          """
> @@ -103,11 +104,12 @@ 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=%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.base_dir,
> self.queues, self.base_dir, self.queues, self.queues, self.queues)
> +        testcmd = self.dut.target + "/app/testpmd "
> +        vdev1 = " --vdev 'net_vhost0,iface=%s/vhost-
> net0,queues=%d,client=1'" % (self.base_dir, self.queues)
> +        vdev2 = " --vdev 'net_vhost1,iface=%s/vhost-
> net1,queues=%d,client=1'" % (self.base_dir, self.queues)
> +        eal_params = self.dut.create_eal_parameters(cores="1S/12C/1T",
> prefix='vhost', ports=[self.pci_info])
> +        para = " -- -i --nb-cores=4 --rxq=%d --txq=%d --txd=1024 --rxd=1024" %
> (self.queues, self.queues)
> +        start_cmd = testcmd + eal_params + vdev1 + vdev2 + para
>          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


      parent reply	other threads:[~2020-03-03  5:24 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-02-25  9:32 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 ` [dts] [PATCH V1] tests/vm2vm_virtio_net_perf:add " zhu,shuai
2020-02-27  9:49   ` 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 [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=8CE3E05A3F976642AAB0F4675D0AD20E0BBE8E3E@SHSMSX101.ccr.corp.intel.com \
    --to=lijuan.tu@intel.com \
    --cc=dts@dpdk.org \
    --cc=shuaix.zhu@intel.com \
    --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).