* Re: [dts] [PATCH V1] tests/generic_filter: add nic sageville
2020-04-29 16:29 [dts] [PATCH V1] tests/generic_filter: add nic sageville Mei Jianwei
@ 2020-04-29 2:39 ` Zhao, HaiyangX
2020-05-06 3:16 ` Tu, Lijuan
1 sibling, 0 replies; 3+ messages in thread
From: Zhao, HaiyangX @ 2020-04-29 2:39 UTC (permalink / raw)
To: Mei, JianweiX, dts; +Cc: Mei, JianweiX
[-- Attachment #1: Type: text/plain, Size: 8109 bytes --]
Tested-by: Zhao, HaiyangX <haiyangx.zhao@intel.com>
Best Regards,
Zhao haiyang
> -----Original Message-----
> From: dts [mailto:dts-bounces@dpdk.org] On Behalf Of Mei Jianwei
> Sent: Thursday, April 30, 2020 0:29
> To: dts@dpdk.org
> Cc: Mei, JianweiX <jianweix.mei@intel.com>
> Subject: [dts] [PATCH V1] tests/generic_filter: add nic sageville
>
> add nic sageville.
>
> Signed-off-by: Mei Jianwei <jianweix.mei@intel.com>
> ---
> tests/TestSuite_generic_filter.py | 24 ++++++++++++------------
> 1 file changed, 12 insertions(+), 12 deletions(-)
>
> diff --git a/tests/TestSuite_generic_filter.py b/tests/TestSuite_generic_filter.py
> index 2d61f5b..7806e11 100644
> --- a/tests/TestSuite_generic_filter.py
> +++ b/tests/TestSuite_generic_filter.py
> @@ -204,7 +204,7 @@ class TestGeneric_filter(TestCase):
> """
> Enable receipt of SYN packets
> """
> - self.verify(self.nic in ["niantic", "kawela_4", "bartonhills", "powerville",
> "sagepond", "foxville"], "%s nic not support syn filter" % self.nic)
> + self.verify(self.nic in ["niantic", "kawela_4", "bartonhills",
> + "powerville", "sagepond", "foxville", "sageville"], "%s nic not
> + support syn filter" % self.nic)
> self.pmdout.start_testpmd(
> "%s" % self.cores, "--disable-rss --rxq=4 --txq=4 --portmask=%s --nb-
> cores=4 --nb-ports=1" % portMask)
> self.port_config()
> @@ -247,7 +247,7 @@ class TestGeneric_filter(TestCase):
> "%s" % self.cores, "--disable-rss --rxq=4 --txq=4 --portmask=%s --nb-
> cores=4 --nb-ports=1" % portMask)
> self.port_config()
>
> - if self.nic in ["niantic", "sagepond"]:
> + if self.nic in ["niantic", "sagepond", "sageville"]:
> cmd = "5tuple_filter %s add dst_ip 2.2.2.5 src_ip 2.2.2.4 dst_port 1
> src_port 1 protocol 0x06 mask 0x1f tcp_flags 0x0 priority 3 queue 3 " % (
> valports[0])
> self.dut.send_expect("%s" % cmd, "testpmd> ") @@ -307,7 +307,7 @@
> class TestGeneric_filter(TestCase):
> """
> five tuple filter
> """
> - if self.nic in ["niantic", "kawela_4", "sagepond", "foxville"]:
> + if self.nic in ["niantic", "kawela_4", "sagepond", "foxville", "sageville"]:
> self.pmdout.start_testpmd(
> "%s" % self.cores, "--disable-rss --rxq=4 --txq=4 --portmask=%s --nb-
> cores=4 --nb-ports=1" % portMask)
> self.port_config()
> @@ -315,14 +315,14 @@ class TestGeneric_filter(TestCase):
> mask = ['0x1f', '0x0']
> for case in mask:
> if case == "0x1f":
> - if self.nic in ["niantic", "sagepond"]:
> + if self.nic in ["niantic", "sagepond", "sageville"]:
> cmd = "5tuple_filter %s add dst_ip 2.2.2.5 src_ip 2.2.2.4
> dst_port 1 src_port 1 protocol 0x06 mask %s tcp_flags 0x0 priority 3 queue 3" %
> (
> valports[0], case)
> if self.nic == "kawela_4":
> cmd = "5tuple_filter %s add dst_ip 2.2.2.5 src_ip 2.2.2.4
> dst_port 1 src_port 1 protocol 0x06 mask %s tcp_flags 0x02 priority 3 queue 3" %
> (
> valports[0], case)
> else:
> - if self.nic in ["niantic", "sagepond"]:
> + if self.nic in ["niantic", "sagepond", "sageville"]:
> cmd = "5tuple_filter %s add dst_ip 2.2.2.5 src_ip 2.2.2.4
> dst_port 1 src_port 1 protocol 0x06 mask %s tcp_flags 0x0 priority 3 queue 3" %
> (
> valports[0], case)
> if self.nic == "kawela_4":
> @@ -345,14 +345,14 @@ class TestGeneric_filter(TestCase):
> out = self.dut.send_expect("stop", "testpmd> ")
> self.verify_result(out, tx_pkts="1", expect_queue="0")
> if case == "0x1f":
> - if self.nic in ["niantic", "sagepond"]:
> + if self.nic in ["niantic", "sagepond", "sageville"]:
> cmd = "5tuple_filter %s del dst_ip 2.2.2.5 src_ip 2.2.2.4 dst_port
> 1 src_port 1 protocol 0x06 mask %s tcp_flags 0x0 priority 3 queue 3" % (
> valports[0], case)
> if self.nic == "kawela_4":
> cmd = "5tuple_filter %s del dst_ip 2.2.2.5 src_ip 2.2.2.4 dst_port
> 1 src_port 1 protocol 0x06 mask %s tcp_flags 0x02 priority 3 queue 3" % (
> valports[0], case)
> else:
> - if self.nic in ["niantic", "sagepond"]:
> + if self.nic in ["niantic", "sagepond", "sageville"]:
> cmd = "5tuple_filter %s del dst_ip 2.2.2.5 src_ip 2.2.2.4 dst_port
> 1 src_port 1 protocol 0x06 mask %s tcp_flags 0x0 priority 3 queue 3" % (
> valports[0], case)
> if self.nic == "kawela_4":
> @@ -372,7 +372,7 @@ class TestGeneric_filter(TestCase):
>
> self.verify(self.nic in ["niantic", "kawela_4", "bartonhills", "sagepond",
> "powerville", "fortville_eagle", "fortville_spirit",
> - "fortville_spirit_single", "fortpark_TLV","fortpark_BASE-T",
> "fortville_25g","cavium_a063", "carlsville", "foxville"], "%s nic not support syn
> filter" % self.nic)
> + "fortville_spirit_single",
> + "fortpark_TLV","fortpark_BASE-T", "fortville_25g","cavium_a063",
> + "carlsville", "foxville", "sageville"], "%s nic not support syn
> + filter" % self.nic)
> self.pmdout.start_testpmd(
> "%s" % self.cores, "--disable-rss --rxq=4 --txq=4 --portmask=%s --nb-
> cores=4 --nb-ports=1" % portMask)
> self.port_config()
> @@ -417,7 +417,7 @@ class TestGeneric_filter(TestCase):
> self.verify_result(out, tx_pkts="1", expect_queue="0")
>
> def test_multiple_filters_10GB(self):
> - if self.nic in ["niantic", "sagepond"]:
> + if self.nic in ["niantic", "sagepond", "sageville"]:
> self.pmdout.start_testpmd(
> "%s" % self.cores, "--disable-rss --rxq=4 --txq=4 --portmask=%s --nb-
> cores=4 --nb-ports=1" % portMask)
> self.port_config()
> @@ -501,7 +501,7 @@ class TestGeneric_filter(TestCase):
>
> def test_twotuple_filter(self):
>
> - if self.nic in ["powerville", "bartonhills", "cavium_a063", "sagepond",
> "foxville"]:
> + if self.nic in ["powerville", "bartonhills", "cavium_a063", "sagepond",
> "foxville", "sageville"]:
> self.pmdout.start_testpmd(
> "%s" % self.cores, "--disable-rss --rxq=4 --txq=4 --portmask=%s --nb-
> cores=4 --nb-ports=1" % portMask)
> self.port_config()
> @@ -534,7 +534,7 @@ class TestGeneric_filter(TestCase):
> self.verify(False, "%s nic not support two tuple filter" % self.nic)
>
> def test_flex_filter(self):
> - self.verify(self.nic in ["powerville", "bartonhills", "cavium_a063",
> "sagepond", "foxville"], '%s not support flex filter' % self.nic)
> + self.verify(self.nic in ["powerville", "bartonhills",
> + "cavium_a063", "sagepond", "foxville", "sageville"], '%s not support
> + flex filter' % self.nic)
>
> masks = ['000C', '000C']
> self.pmdout.start_testpmd(
> @@ -589,7 +589,7 @@ class TestGeneric_filter(TestCase):
>
> def test_multiple_filters_1GB(self):
>
> - if self.nic in ["powerville", "kawela_4", "bartonhills", "sagepond",
> "foxville"]:
> + if self.nic in ["powerville", "kawela_4", "bartonhills", "sagepond",
> "foxville", "sageville"]:
> self.pmdout.start_testpmd(
> "%s" % self.cores, "--disable-rss --rxq=4 --txq=4 --portmask=%s --nb-
> cores=4 --nb-ports=1" % portMask)
> self.port_config()
> --
> 2.18.2
[-- Attachment #2: TestGeneric_filter.log --]
[-- Type: application/octet-stream, Size: 429139 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
* [dts] [PATCH V1] tests/generic_filter: add nic sageville
@ 2020-04-29 16:29 Mei Jianwei
2020-04-29 2:39 ` Zhao, HaiyangX
2020-05-06 3:16 ` Tu, Lijuan
0 siblings, 2 replies; 3+ messages in thread
From: Mei Jianwei @ 2020-04-29 16:29 UTC (permalink / raw)
To: dts; +Cc: Mei Jianwei
add nic sageville.
Signed-off-by: Mei Jianwei <jianweix.mei@intel.com>
---
tests/TestSuite_generic_filter.py | 24 ++++++++++++------------
1 file changed, 12 insertions(+), 12 deletions(-)
diff --git a/tests/TestSuite_generic_filter.py b/tests/TestSuite_generic_filter.py
index 2d61f5b..7806e11 100644
--- a/tests/TestSuite_generic_filter.py
+++ b/tests/TestSuite_generic_filter.py
@@ -204,7 +204,7 @@ class TestGeneric_filter(TestCase):
"""
Enable receipt of SYN packets
"""
- self.verify(self.nic in ["niantic", "kawela_4", "bartonhills", "powerville", "sagepond", "foxville"], "%s nic not support syn filter" % self.nic)
+ self.verify(self.nic in ["niantic", "kawela_4", "bartonhills", "powerville", "sagepond", "foxville", "sageville"], "%s nic not support syn filter" % self.nic)
self.pmdout.start_testpmd(
"%s" % self.cores, "--disable-rss --rxq=4 --txq=4 --portmask=%s --nb-cores=4 --nb-ports=1" % portMask)
self.port_config()
@@ -247,7 +247,7 @@ class TestGeneric_filter(TestCase):
"%s" % self.cores, "--disable-rss --rxq=4 --txq=4 --portmask=%s --nb-cores=4 --nb-ports=1" % portMask)
self.port_config()
- if self.nic in ["niantic", "sagepond"]:
+ if self.nic in ["niantic", "sagepond", "sageville"]:
cmd = "5tuple_filter %s add dst_ip 2.2.2.5 src_ip 2.2.2.4 dst_port 1 src_port 1 protocol 0x06 mask 0x1f tcp_flags 0x0 priority 3 queue 3 " % (
valports[0])
self.dut.send_expect("%s" % cmd, "testpmd> ")
@@ -307,7 +307,7 @@ class TestGeneric_filter(TestCase):
"""
five tuple filter
"""
- if self.nic in ["niantic", "kawela_4", "sagepond", "foxville"]:
+ if self.nic in ["niantic", "kawela_4", "sagepond", "foxville", "sageville"]:
self.pmdout.start_testpmd(
"%s" % self.cores, "--disable-rss --rxq=4 --txq=4 --portmask=%s --nb-cores=4 --nb-ports=1" % portMask)
self.port_config()
@@ -315,14 +315,14 @@ class TestGeneric_filter(TestCase):
mask = ['0x1f', '0x0']
for case in mask:
if case == "0x1f":
- if self.nic in ["niantic", "sagepond"]:
+ if self.nic in ["niantic", "sagepond", "sageville"]:
cmd = "5tuple_filter %s add dst_ip 2.2.2.5 src_ip 2.2.2.4 dst_port 1 src_port 1 protocol 0x06 mask %s tcp_flags 0x0 priority 3 queue 3" % (
valports[0], case)
if self.nic == "kawela_4":
cmd = "5tuple_filter %s add dst_ip 2.2.2.5 src_ip 2.2.2.4 dst_port 1 src_port 1 protocol 0x06 mask %s tcp_flags 0x02 priority 3 queue 3" % (
valports[0], case)
else:
- if self.nic in ["niantic", "sagepond"]:
+ if self.nic in ["niantic", "sagepond", "sageville"]:
cmd = "5tuple_filter %s add dst_ip 2.2.2.5 src_ip 2.2.2.4 dst_port 1 src_port 1 protocol 0x06 mask %s tcp_flags 0x0 priority 3 queue 3" % (
valports[0], case)
if self.nic == "kawela_4":
@@ -345,14 +345,14 @@ class TestGeneric_filter(TestCase):
out = self.dut.send_expect("stop", "testpmd> ")
self.verify_result(out, tx_pkts="1", expect_queue="0")
if case == "0x1f":
- if self.nic in ["niantic", "sagepond"]:
+ if self.nic in ["niantic", "sagepond", "sageville"]:
cmd = "5tuple_filter %s del dst_ip 2.2.2.5 src_ip 2.2.2.4 dst_port 1 src_port 1 protocol 0x06 mask %s tcp_flags 0x0 priority 3 queue 3" % (
valports[0], case)
if self.nic == "kawela_4":
cmd = "5tuple_filter %s del dst_ip 2.2.2.5 src_ip 2.2.2.4 dst_port 1 src_port 1 protocol 0x06 mask %s tcp_flags 0x02 priority 3 queue 3" % (
valports[0], case)
else:
- if self.nic in ["niantic", "sagepond"]:
+ if self.nic in ["niantic", "sagepond", "sageville"]:
cmd = "5tuple_filter %s del dst_ip 2.2.2.5 src_ip 2.2.2.4 dst_port 1 src_port 1 protocol 0x06 mask %s tcp_flags 0x0 priority 3 queue 3" % (
valports[0], case)
if self.nic == "kawela_4":
@@ -372,7 +372,7 @@ class TestGeneric_filter(TestCase):
self.verify(self.nic in ["niantic", "kawela_4", "bartonhills", "sagepond",
"powerville", "fortville_eagle", "fortville_spirit",
- "fortville_spirit_single", "fortpark_TLV","fortpark_BASE-T", "fortville_25g","cavium_a063", "carlsville", "foxville"], "%s nic not support syn filter" % self.nic)
+ "fortville_spirit_single", "fortpark_TLV","fortpark_BASE-T", "fortville_25g","cavium_a063", "carlsville", "foxville", "sageville"], "%s nic not support syn filter" % self.nic)
self.pmdout.start_testpmd(
"%s" % self.cores, "--disable-rss --rxq=4 --txq=4 --portmask=%s --nb-cores=4 --nb-ports=1" % portMask)
self.port_config()
@@ -417,7 +417,7 @@ class TestGeneric_filter(TestCase):
self.verify_result(out, tx_pkts="1", expect_queue="0")
def test_multiple_filters_10GB(self):
- if self.nic in ["niantic", "sagepond"]:
+ if self.nic in ["niantic", "sagepond", "sageville"]:
self.pmdout.start_testpmd(
"%s" % self.cores, "--disable-rss --rxq=4 --txq=4 --portmask=%s --nb-cores=4 --nb-ports=1" % portMask)
self.port_config()
@@ -501,7 +501,7 @@ class TestGeneric_filter(TestCase):
def test_twotuple_filter(self):
- if self.nic in ["powerville", "bartonhills", "cavium_a063", "sagepond", "foxville"]:
+ if self.nic in ["powerville", "bartonhills", "cavium_a063", "sagepond", "foxville", "sageville"]:
self.pmdout.start_testpmd(
"%s" % self.cores, "--disable-rss --rxq=4 --txq=4 --portmask=%s --nb-cores=4 --nb-ports=1" % portMask)
self.port_config()
@@ -534,7 +534,7 @@ class TestGeneric_filter(TestCase):
self.verify(False, "%s nic not support two tuple filter" % self.nic)
def test_flex_filter(self):
- self.verify(self.nic in ["powerville", "bartonhills", "cavium_a063", "sagepond", "foxville"], '%s not support flex filter' % self.nic)
+ self.verify(self.nic in ["powerville", "bartonhills", "cavium_a063", "sagepond", "foxville", "sageville"], '%s not support flex filter' % self.nic)
masks = ['000C', '000C']
self.pmdout.start_testpmd(
@@ -589,7 +589,7 @@ class TestGeneric_filter(TestCase):
def test_multiple_filters_1GB(self):
- if self.nic in ["powerville", "kawela_4", "bartonhills", "sagepond", "foxville"]:
+ if self.nic in ["powerville", "kawela_4", "bartonhills", "sagepond", "foxville", "sageville"]:
self.pmdout.start_testpmd(
"%s" % self.cores, "--disable-rss --rxq=4 --txq=4 --portmask=%s --nb-cores=4 --nb-ports=1" % portMask)
self.port_config()
--
2.18.2
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [dts] [PATCH V1] tests/generic_filter: add nic sageville
2020-04-29 16:29 [dts] [PATCH V1] tests/generic_filter: add nic sageville Mei Jianwei
2020-04-29 2:39 ` Zhao, HaiyangX
@ 2020-05-06 3:16 ` Tu, Lijuan
1 sibling, 0 replies; 3+ messages in thread
From: Tu, Lijuan @ 2020-05-06 3:16 UTC (permalink / raw)
To: Mei, JianweiX, dts; +Cc: Mei, JianweiX
Applied, thanks
> -----Original Message-----
> From: dts [mailto:dts-bounces@dpdk.org] On Behalf Of Mei Jianwei
> Sent: Thursday, April 30, 2020 12:29 AM
> To: dts@dpdk.org
> Cc: Mei, JianweiX <jianweix.mei@intel.com>
> Subject: [dts] [PATCH V1] tests/generic_filter: add nic sageville
>
> add nic sageville.
>
> Signed-off-by: Mei Jianwei <jianweix.mei@intel.com>
> ---
> tests/TestSuite_generic_filter.py | 24 ++++++++++++------------
> 1 file changed, 12 insertions(+), 12 deletions(-)
>
> diff --git a/tests/TestSuite_generic_filter.py
> b/tests/TestSuite_generic_filter.py
> index 2d61f5b..7806e11 100644
> --- a/tests/TestSuite_generic_filter.py
> +++ b/tests/TestSuite_generic_filter.py
> @@ -204,7 +204,7 @@ class TestGeneric_filter(TestCase):
> """
> Enable receipt of SYN packets
> """
> - self.verify(self.nic in ["niantic", "kawela_4", "bartonhills", "powerville",
> "sagepond", "foxville"], "%s nic not support syn filter" % self.nic)
> + self.verify(self.nic in ["niantic", "kawela_4", "bartonhills",
> + "powerville", "sagepond", "foxville", "sageville"], "%s nic not
> + support syn filter" % self.nic)
> self.pmdout.start_testpmd(
> "%s" % self.cores, "--disable-rss --rxq=4 --txq=4 --portmask=%s --nb-
> cores=4 --nb-ports=1" % portMask)
> self.port_config()
> @@ -247,7 +247,7 @@ class TestGeneric_filter(TestCase):
> "%s" % self.cores, "--disable-rss --rxq=4 --txq=4 --portmask=%s --nb-
> cores=4 --nb-ports=1" % portMask)
> self.port_config()
>
> - if self.nic in ["niantic", "sagepond"]:
> + if self.nic in ["niantic", "sagepond", "sageville"]:
> cmd = "5tuple_filter %s add dst_ip 2.2.2.5 src_ip 2.2.2.4 dst_port 1
> src_port 1 protocol 0x06 mask 0x1f tcp_flags 0x0 priority 3 queue 3 " % (
> valports[0])
> self.dut.send_expect("%s" % cmd, "testpmd> ") @@ -307,7 +307,7
> @@ class TestGeneric_filter(TestCase):
> """
> five tuple filter
> """
> - if self.nic in ["niantic", "kawela_4", "sagepond", "foxville"]:
> + if self.nic in ["niantic", "kawela_4", "sagepond", "foxville", "sageville"]:
> self.pmdout.start_testpmd(
> "%s" % self.cores, "--disable-rss --rxq=4 --txq=4 --portmask=%s --
> nb-cores=4 --nb-ports=1" % portMask)
> self.port_config()
> @@ -315,14 +315,14 @@ class TestGeneric_filter(TestCase):
> mask = ['0x1f', '0x0']
> for case in mask:
> if case == "0x1f":
> - if self.nic in ["niantic", "sagepond"]:
> + if self.nic in ["niantic", "sagepond", "sageville"]:
> cmd = "5tuple_filter %s add dst_ip 2.2.2.5 src_ip 2.2.2.4
> dst_port 1 src_port 1 protocol 0x06 mask %s tcp_flags 0x0 priority 3 queue
> 3" % (
> valports[0], case)
> if self.nic == "kawela_4":
> cmd = "5tuple_filter %s add dst_ip 2.2.2.5 src_ip 2.2.2.4
> dst_port 1 src_port 1 protocol 0x06 mask %s tcp_flags 0x02 priority 3 queue
> 3" % (
> valports[0], case)
> else:
> - if self.nic in ["niantic", "sagepond"]:
> + if self.nic in ["niantic", "sagepond", "sageville"]:
> cmd = "5tuple_filter %s add dst_ip 2.2.2.5 src_ip 2.2.2.4
> dst_port 1 src_port 1 protocol 0x06 mask %s tcp_flags 0x0 priority 3 queue
> 3" % (
> valports[0], case)
> if self.nic == "kawela_4":
> @@ -345,14 +345,14 @@ class TestGeneric_filter(TestCase):
> out = self.dut.send_expect("stop", "testpmd> ")
> self.verify_result(out, tx_pkts="1", expect_queue="0")
> if case == "0x1f":
> - if self.nic in ["niantic", "sagepond"]:
> + if self.nic in ["niantic", "sagepond", "sageville"]:
> cmd = "5tuple_filter %s del dst_ip 2.2.2.5 src_ip 2.2.2.4
> dst_port 1 src_port 1 protocol 0x06 mask %s tcp_flags 0x0 priority 3 queue
> 3" % (
> valports[0], case)
> if self.nic == "kawela_4":
> cmd = "5tuple_filter %s del dst_ip 2.2.2.5 src_ip 2.2.2.4
> dst_port 1 src_port 1 protocol 0x06 mask %s tcp_flags 0x02 priority 3 queue
> 3" % (
> valports[0], case)
> else:
> - if self.nic in ["niantic", "sagepond"]:
> + if self.nic in ["niantic", "sagepond", "sageville"]:
> cmd = "5tuple_filter %s del dst_ip 2.2.2.5 src_ip 2.2.2.4
> dst_port 1 src_port 1 protocol 0x06 mask %s tcp_flags 0x0 priority 3 queue
> 3" % (
> valports[0], case)
> if self.nic == "kawela_4":
> @@ -372,7 +372,7 @@ class TestGeneric_filter(TestCase):
>
> self.verify(self.nic in ["niantic", "kawela_4", "bartonhills", "sagepond",
> "powerville", "fortville_eagle", "fortville_spirit",
> - "fortville_spirit_single", "fortpark_TLV","fortpark_BASE-T",
> "fortville_25g","cavium_a063", "carlsville", "foxville"], "%s nic not support
> syn filter" % self.nic)
> + "fortville_spirit_single",
> + "fortpark_TLV","fortpark_BASE-T", "fortville_25g","cavium_a063",
> + "carlsville", "foxville", "sageville"], "%s nic not support syn
> + filter" % self.nic)
> self.pmdout.start_testpmd(
> "%s" % self.cores, "--disable-rss --rxq=4 --txq=4 --portmask=%s --nb-
> cores=4 --nb-ports=1" % portMask)
> self.port_config()
> @@ -417,7 +417,7 @@ class TestGeneric_filter(TestCase):
> self.verify_result(out, tx_pkts="1", expect_queue="0")
>
> def test_multiple_filters_10GB(self):
> - if self.nic in ["niantic", "sagepond"]:
> + if self.nic in ["niantic", "sagepond", "sageville"]:
> self.pmdout.start_testpmd(
> "%s" % self.cores, "--disable-rss --rxq=4 --txq=4 --portmask=%s --
> nb-cores=4 --nb-ports=1" % portMask)
> self.port_config()
> @@ -501,7 +501,7 @@ class TestGeneric_filter(TestCase):
>
> def test_twotuple_filter(self):
>
> - if self.nic in ["powerville", "bartonhills", "cavium_a063", "sagepond",
> "foxville"]:
> + if self.nic in ["powerville", "bartonhills", "cavium_a063", "sagepond",
> "foxville", "sageville"]:
> self.pmdout.start_testpmd(
> "%s" % self.cores, "--disable-rss --rxq=4 --txq=4 --portmask=%s --
> nb-cores=4 --nb-ports=1" % portMask)
> self.port_config()
> @@ -534,7 +534,7 @@ class TestGeneric_filter(TestCase):
> self.verify(False, "%s nic not support two tuple filter" % self.nic)
>
> def test_flex_filter(self):
> - self.verify(self.nic in ["powerville", "bartonhills", "cavium_a063",
> "sagepond", "foxville"], '%s not support flex filter' % self.nic)
> + self.verify(self.nic in ["powerville", "bartonhills",
> + "cavium_a063", "sagepond", "foxville", "sageville"], '%s not support
> + flex filter' % self.nic)
>
> masks = ['000C', '000C']
> self.pmdout.start_testpmd(
> @@ -589,7 +589,7 @@ class TestGeneric_filter(TestCase):
>
> def test_multiple_filters_1GB(self):
>
> - if self.nic in ["powerville", "kawela_4", "bartonhills", "sagepond",
> "foxville"]:
> + if self.nic in ["powerville", "kawela_4", "bartonhills", "sagepond",
> "foxville", "sageville"]:
> self.pmdout.start_testpmd(
> "%s" % self.cores, "--disable-rss --rxq=4 --txq=4 --portmask=%s --
> nb-cores=4 --nb-ports=1" % portMask)
> self.port_config()
> --
> 2.18.2
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2020-05-06 3:16 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-04-29 16:29 [dts] [PATCH V1] tests/generic_filter: add nic sageville Mei Jianwei
2020-04-29 2:39 ` Zhao, HaiyangX
2020-05-06 3:16 ` Tu, Lijuan
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).