test suite reviews and discussions
 help / color / mirror / Atom feed
From: "Li, WenjieX A" <wenjiex.a.li@intel.com>
To: "Xiao, QimaiX" <qimaix.xiao@intel.com>, "dts@dpdk.org" <dts@dpdk.org>
Cc: "Xiao, QimaiX" <qimaix.xiao@intel.com>,
	"Li, WenjieX A" <wenjiex.a.li@intel.com>
Subject: Re: [dts] [PATCH V1]tests/TestSuite_qinq_filter: update new version	dpdk testpmd commandline in dts
Date: Wed, 30 Oct 2019 09:10:26 +0000	[thread overview]
Message-ID: <8688172CD5C0B74590FAE19D9579F94B537D8DB3@SHSMSX103.ccr.corp.intel.com> (raw)
In-Reply-To: <1572469371-95027-1-git-send-email-qimaix.xiao@intel.com>

[-- Attachment #1: Type: text/plain, Size: 3480 bytes --]

Tested-by: Li, WenjieX A <wenjiex.a.li@intel.com>

> -----Original Message-----
> From: dts [mailto:dts-bounces@dpdk.org] On Behalf Of Xiao Qimai
> Sent: Thursday, October 31, 2019 5:03 AM
> To: dts@dpdk.org
> Cc: Xiao, QimaiX <qimaix.xiao@intel.com>
> Subject: [dts] [PATCH V1]tests/TestSuite_qinq_filter: update new version dpdk
> testpmd commandline in dts
> 
> change testpmd commandline in dts, according to dpdk-
> 2a0b41984c7ee304a86f0799b1388d7674694296
> 
> Signed-off-by: Xiao Qimai <qimaix.xiao@intel.com>
> ---
>  tests/TestSuite_qinq_filter.py | 8 ++++----
>  1 file changed, 4 insertions(+), 4 deletions(-)
> 
> diff --git a/tests/TestSuite_qinq_filter.py b/tests/TestSuite_qinq_filter.py index
> 372e9e9..738e5e4 100644
> --- a/tests/TestSuite_qinq_filter.py
> +++ b/tests/TestSuite_qinq_filter.py
> @@ -148,7 +148,7 @@ class TestQinqFilter(TestCase):
>                                 --portmask=%s --port-topology=loop \
>                                 --rxq=4 --txq=4  --disable-rss' % (self.target, self.coreMask,
> self.portMask),
>                                 "testpmd> ", 30)
> -        self.dut.send_expect("vlan set qinq on %s" % dutRxPortId, "testpmd> ")
> +        self.dut.send_expect("vlan set extend on %s" % dutRxPortId,
> + "testpmd> ")
>          self.dut.send_expect("vlan set strip on %s" % dutRxPortId, "testpmd> ")
>          self.dut.send_expect("set fwd rxonly", "testpmd> ")
>          self.dut.send_expect("set verbose 1", "testpmd> ") @@ -169,7 +169,7 @@
> class TestQinqFilter(TestCase):
>                                 --portmask=%s --port-topology=loop \
>                                 --rxq=4 --txq=4  --disable-rss' % (self.target, self.coreMask,
> self.portMask),
>                                 "testpmd> ", 30)
> -        self.dut.send_expect("vlan set qinq on %s" % dutRxPortId, "testpmd> ")
> +        self.dut.send_expect("vlan set extend on %s" % dutRxPortId,
> + "testpmd> ")
>          self.dut.send_expect("set fwd rxonly", "testpmd> ")
>          self.dut.send_expect("set verbose 1", "testpmd> ")
>          self.dut.send_expect("start", "testpmd> ", 120) @@ -206,7 +206,7 @@
> class TestQinqFilter(TestCase):
>                                 --rxq=4 --txq=4  --disable-rss'
>                                 % (self.target, self.coreMask,
> self.dut.ports_info[dutRxPortId]['pci']),
>                                 "testpmd> ", 30)
> -        self.dut.send_expect("vlan set qinq on %s" % dutRxPortId, "testpmd> ")
> +        self.dut.send_expect("vlan set extend on %s" % dutRxPortId,
> + "testpmd> ")
>          self.dut.send_expect("set fwd rxonly", "testpmd> ")
>          self.dut.send_expect("set verbose 1", "testpmd> ")
>          self.dut.send_expect("start", "testpmd> ", 120) @@ -275,7 +275,7 @@
> class TestQinqFilter(TestCase):
>                                 --rxq=4 --txq=4  --disable-rss'
>                                 % (self.target, self.coreMask,
> self.dut.ports_info[dutRxPortId]['pci']),
>                                 "testpmd> ", 30)
> -        self.dut.send_expect("vlan set qinq on %s" % dutRxPortId, "testpmd> ")
> +        self.dut.send_expect("vlan set extend on %s" % dutRxPortId,
> + "testpmd> ")
>          self.dut.send_expect("set fwd rxonly", "testpmd> ")
>          self.dut.send_expect("set verbose 1", "testpmd> ")
>          self.dut.send_expect("start", "testpmd> ", 120)
> --
> 1.8.3.1


[-- Attachment #2: TestQinqFilter.log --]
[-- Type: application/octet-stream, Size: 138720 bytes --]

      reply	other threads:[~2019-10-30  9:10 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-10-30 21:02 Xiao Qimai
2019-10-30  9:10 ` Li, WenjieX A [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=8688172CD5C0B74590FAE19D9579F94B537D8DB3@SHSMSX103.ccr.corp.intel.com \
    --to=wenjiex.a.li@intel.com \
    --cc=dts@dpdk.org \
    --cc=qimaix.xiao@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).