test suite reviews and discussions
 help / color / mirror / Atom feed
From: "Tu, Lijuan" <lijuan.tu@intel.com>
To: "He, Zhiwei" <zhiwei.he@intel.com>, "dts@dpdk.org" <dts@dpdk.org>
Cc: "He, Zhiwei" <zhiwei.he@intel.com>
Subject: Re: [dts] [PATCH V1] tests/TestSuite_generic_flow_api Enable CVL to	support tunnel filter vxlan and nvgre fdir IPV4 ipv6 and vxlan
Date: Mon, 21 Oct 2019 02:23:02 +0000	[thread overview]
Message-ID: <8CE3E05A3F976642AAB0F4675D0AD20E0BB42EE6@SHSMSX101.ccr.corp.intel.com> (raw)
In-Reply-To: <1570887934-73357-1-git-send-email-zhiwei.he@intel.com>

Applied, thanks

> -----Original Message-----
> From: dts [mailto:dts-bounces@dpdk.org] On Behalf Of zhiwei.he
> Sent: Saturday, October 12, 2019 9:46 PM
> To: dts@dpdk.org
> Cc: He, Zhiwei <zhiwei.he@intel.com>
> Subject: [dts] [PATCH V1] tests/TestSuite_generic_flow_api Enable CVL to
> support tunnel filter vxlan and nvgre fdir IPV4 ipv6 and vxlan
> 
> From: "zhiwei.he" <zhiwei.he@intel.com>
> 
> Signed-off-by: zhiwei.he <zhiwei.he@intel.com>
> ---
>  tests/TestSuite_generic_flow_api.py | 18 +++++++++---------
>  1 file changed, 9 insertions(+), 9 deletions(-)
> 
> diff --git a/tests/TestSuite_generic_flow_api.py
> b/tests/TestSuite_generic_flow_api.py
> index e0a4aa6..0b08d90 100644
> --- a/tests/TestSuite_generic_flow_api.py
> +++ b/tests/TestSuite_generic_flow_api.py
> @@ -770,7 +770,7 @@ class TestGeneric_flow_api(TestCase):
>          """
>          supported by i40e, ixgbe and igb
>          """
> -        self.verify(self.nic in ["niantic", "kawela_4", "kawela", "bartonhills",
> "twinville", "sagepond", "sageville",
> +        self.verify(self.nic in ["niantic",
> + "columbiaville_25g","columbiaville_100g","kawela_4", "kawela",
> + "bartonhills", "twinville", "sagepond", "sageville",
>                                   "powerville", "fortville_eagle", "fortville_spirit",
>                                   "fortville_spirit_single", "fortpark_TLV"], "%s nic not
> support ethertype filter" % self.nic)
> 
> @@ -782,7 +782,7 @@ class TestGeneric_flow_api(TestCase):
> 
>          # i40e,ixgbe and igb support different packet types.
>          if (self.nic in ["fortville_eagle", "fortville_spirit",
> -                         "fortville_spirit_single", "fortpark_TLV"]):
> +                         "fortville_spirit_single",
> "fortpark_TLV","columbiaville_25g","columbiaville_100g"]):
> 
>              basic_flow_actions = [
>                  {'create': 'validate', 'flows': ['ether', 'arp'], 'actions': ['queue']}, @@
> -979,12 +979,12 @@ class TestGeneric_flow_api(TestCase):
>          """
>          only supported by i40e and ixgbe
>          """
> -        self.verify(self.nic in ["niantic", "twinville", "sagepond", "sageville",
> +        self.verify(self.nic in ["niantic",
> + "columbiaville_25g","columbiaville_100g","twinville", "sagepond",
> + "sageville",
>                                   "fortville_eagle", "fortville_spirit",
>                                   "fortville_spirit_single", "fortpark_TLV"],
>                      "%s nic not support fdir ipv4 filter" % self.nic)
>          # i40e
> -        if (self.nic in ["fortville_eagle", "fortville_spirit",
> +        if (self.nic in ["fortville_eagle",
> + "fortville_spirit","columbiaville_25g","columbiaville_100g",
>                           "fortville_spirit_single", "fortpark_TLV"]):
>              self.setup_env()
>              # start testpmd on pf
> @@ -1088,12 +1088,12 @@ class TestGeneric_flow_api(TestCase):
>          """
>          only supported by i40e and ixgbe
>          """
> -        self.verify(self.nic in ["niantic", "twinville", "sagepond", "sageville",
> +        self.verify(self.nic in ["niantic", "twinville", "sagepond",
> + "sageville","columbiaville_25g","columbiaville_100g",
>                                   "fortville_eagle", "fortville_spirit",
>                                   "fortville_spirit_single", "fortpark_TLV"],
>                      "%s nic not support fdir ipv6 filter" % self.nic)
>          # i40e
> -        if (self.nic in ["fortville_eagle", "fortville_spirit",
> +        if (self.nic in ["fortville_eagle",
> + "fortville_spirit","columbiaville_25g","columbiaville_100g",
>                           "fortville_spirit_single", "fortpark_TLV"]):
>              self.setup_env()
>              self.pmdout.start_testpmd("%s" % self.pf_cores, "--pkt-filter-
> mode=perfect --disable-rss --rxq=%d --txq=%d" % (MAX_QUEUE+1,
> MAX_QUEUE+1), "-w %s --file-prefix=pf --socket-mem 1024,1024 --legacy-
> mem" % self.pf_pci) @@ -1495,7 +1495,7 @@ class
> TestGeneric_flow_api(TestCase):
>          """
>          only supported by ixgbe
>          """
> -        self.verify(self.nic in ["twinville", "sagepond", "sageville"], "%s nic not
> support fdir vxlan filter" % self.nic)
> +        self.verify(self.nic in ["twinville", "sagepond",
> + "sageville","columbiaville_25g","columbiaville_100g"], "%s nic not
> + support fdir vxlan filter" % self.nic)
> 
>          self.pmdout.start_testpmd("%s" % self.cores, "--pkt-filter-
> mode=perfect-tunnel --disable-rss --rxq=%d --txq=%d" % (MAX_QUEUE+1,
> MAX_QUEUE+1))
>          self.dut.send_expect("set fwd rxonly", "testpmd> ", 120) @@ -1537,7
> +1537,7 @@ class TestGeneric_flow_api(TestCase):
>          """
>          only supported by i40e
>          """
> -        self.verify(self.nic in ["fortville_eagle", "fortville_spirit",
> +        self.verify(self.nic in ["fortville_eagle",
> + "fortville_spirit","columbiaville_25g","columbiaville_100g",
>                                   "fortville_spirit_single", "fortpark_TLV"],
>                      "%s nic not support tunnel vxlan filter" % self.nic)
> 
> @@ -1601,7 +1601,7 @@ class TestGeneric_flow_api(TestCase):
>          """
>          only supported by i40e
>          """
> -        self.verify(self.nic in ["fortville_eagle", "fortville_spirit",
> +        self.verify(self.nic in ["fortville_eagle",
> + "fortville_spirit","columbiaville_25g","columbiaville_100g",
>                                   "fortville_spirit_single", "fortpark_TLV"],
>                      "%s nic not support tunnel nvgre filter" % self.nic)
> 
> --
> 1.8.3.1


      reply	other threads:[~2019-10-21  2:23 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-10-12 13:45 zhiwei.he
2019-10-21  2:23 ` 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=8CE3E05A3F976642AAB0F4675D0AD20E0BB42EE6@SHSMSX101.ccr.corp.intel.com \
    --to=lijuan.tu@intel.com \
    --cc=dts@dpdk.org \
    --cc=zhiwei.he@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).