test suite reviews and discussions
 help / color / mirror / Atom feed
From: Lijuan Tu <lijuan.tu@intel.com>
To: wenjieli <wenjiex.a.li@intel.com>, dts@dpdk.org
Subject: Re: [dts] [PATCH V1] tests/rss_to_rte_flow: add fortville_25g
Date: Fri, 2 Nov 2018 00:58:44 +0800	[thread overview]
Message-ID: <d27bd57f-ca77-a406-bb89-9da6c94ef148@intel.com> (raw)
In-Reply-To: <1539854692-12078-1-git-send-email-wenjiex.a.li@intel.com>

Applied, thanks


On 2018年10月18日 17:24, wenjieli wrote:
>  From test plan, rss_to_rte_flow could support all fortville NIC, so add fortville_25g
> into test script.
>
> Signed-off-by: wenjieli <wenjiex.a.li@intel.com>
> ---
>   tests/TestSuite_rss_to_rte_flow.py | 14 +++++++-------
>   1 file changed, 7 insertions(+), 7 deletions(-)
>
> diff --git a/tests/TestSuite_rss_to_rte_flow.py b/tests/TestSuite_rss_to_rte_flow.py
> index 2b2ac48..b504f01 100644
> --- a/tests/TestSuite_rss_to_rte_flow.py
> +++ b/tests/TestSuite_rss_to_rte_flow.py
> @@ -198,7 +198,7 @@ class TestRSS_to_Rteflow(TestCase):
>           # ipv4-other and ipv6-other is enabled by default.
>           # i40e
>           if (self.nic in ["fortville_eagle", "fortville_spirit",
> -                         "fortville_spirit_single", "fortpark_TLV"]):
> +                         "fortville_spirit_single", "fortpark_TLV", "fortville_25g"]):
>               rss_queue = ["1", "4", "7"]
>               self.send_and_check(self.pkt4, rss_queue)
>               self.send_and_check(self.pkt8, rss_queue)
> @@ -229,7 +229,7 @@ class TestRSS_to_Rteflow(TestCase):
>               "flow create 0 ingress pattern end actions rss queues 3 end / end", "created")
>           # Send the packets and verify the results
>           if (self.nic in ["fortville_eagle", "fortville_spirit",
> -                         "fortville_spirit_single", "fortpark_TLV"]):
> +                         "fortville_spirit_single", "fortpark_TLV", "fortville_25g"]):
>               rss_queue = ["3"]
>               self.send_and_check(self.pkt4, rss_queue)
>               self.send_and_check(self.pkt8, rss_queue)
> @@ -274,7 +274,7 @@ class TestRSS_to_Rteflow(TestCase):
>               "flow create 0 ingress pattern end actions rss types udp ipv4-tcp ipv6-sctp ipv4-other end queues 1 4 7 end / end", "created")
>           # send the packets and verify the results
>           if (self.nic in ["fortville_eagle", "fortville_spirit",
> -                         "fortville_spirit_single", "fortpark_TLV"]):
> +                         "fortville_spirit_single", "fortpark_TLV", "fortville_25g"]):
>               rss_queue = ["1", "4", "7"]
>               self.send_and_check(self.pkt2, rss_queue)
>               self.send_and_check(self.pkt3, rss_queue)
> @@ -316,7 +316,7 @@ class TestRSS_to_Rteflow(TestCase):
>               "flow create 0 ingress pattern end actions rss types ipv6-tcp ipv4-udp sctp ipv6-other end queues 5 6 7 end / end", "created")
>           # send the packets and verify the results
>           if (self.nic in ["fortville_eagle", "fortville_spirit",
> -                         "fortville_spirit_single", "fortpark_TLV"]):
> +                         "fortville_spirit_single", "fortpark_TLV", "fortville_25g"]):
>               rss_queue = ["5", "6", "7"]
>               self.send_and_check(self.pkt1, rss_queue)
>               self.send_and_check(self.pkt2, rss_queue)
> @@ -392,7 +392,7 @@ class TestRSS_to_Rteflow(TestCase):
>           Set RSS queue rule with queue region API.
>           """
>           self.verify(self.nic in ["fortville_eagle", "fortville_spirit",
> -                                 "fortville_spirit_single", "fortpark_TLV"], "NIC Unsupported: " + str(self.nic))
> +                                 "fortville_spirit_single", "fortpark_TLV", "fortville_25g"], "NIC Unsupported: " + str(self.nic))
>           self.pmdout.start_testpmd("%s" % self.cores, "--rxq=16 --txq=16 --port-topology=chained")
>           self.dut.send_expect("set fwd rxonly", "testpmd> ", 120)
>           self.dut.send_expect("set verbose 1", "testpmd> ", 120)
> @@ -436,7 +436,7 @@ class TestRSS_to_Rteflow(TestCase):
>           Set RSS queue rule with invalid parameter in queue region API.
>           """
>           self.verify(self.nic in ["fortville_eagle", "fortville_spirit",
> -                                 "fortville_spirit_single", "fortpark_TLV"], "NIC Unsupported: " + str(self.nic))
> +                                 "fortville_spirit_single", "fortpark_TLV", "fortville_25g"], "NIC Unsupported: " + str(self.nic))
>           self.pmdout.start_testpmd("%s" % self.cores, "--rxq=16 --txq=16 --port-topology=chained")
>           self.dut.send_expect("set fwd rxonly", "testpmd> ", 120)
>           self.dut.send_expect("set verbose 1", "testpmd> ", 120)
> @@ -462,7 +462,7 @@ class TestRSS_to_Rteflow(TestCase):
>           The queue region is priority to RSS queue rule.
>           """
>           self.verify(self.nic in ["fortville_eagle", "fortville_spirit",
> -                                 "fortville_spirit_single", "fortpark_TLV"], "NIC Unsupported: " + str(self.nic))
> +                                 "fortville_spirit_single", "fortpark_TLV", "fortville_25g"], "NIC Unsupported: " + str(self.nic))
>           self.pmdout.start_testpmd("%s" % self.cores, "--rxq=16 --txq=16 --port-topology=chained")
>           self.dut.send_expect("port config all rss all", "testpmd> ", 120)
>           self.dut.send_expect("set fwd rxonly", "testpmd> ", 120)

      reply	other threads:[~2018-11-01  8:30 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-10-18  9:24 wenjieli
2018-11-01 16:58 ` Lijuan Tu [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=d27bd57f-ca77-a406-bb89-9da6c94ef148@intel.com \
    --to=lijuan.tu@intel.com \
    --cc=dts@dpdk.org \
    --cc=wenjiex.a.li@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).