* [dts] [PATCH V2] tests/dual_vlan:replace qinq with extend
@ 2019-10-30 8:32 zhu wenhui
2019-10-30 8:31 ` Zhu, ShuaiX
2019-11-22 2:51 ` Tu, Lijuan
0 siblings, 2 replies; 3+ messages in thread
From: zhu wenhui @ 2019-10-30 8:32 UTC (permalink / raw)
To: dts; +Cc: zhu wenhui
Change the command according to the modification of DPDK-2a0b41984c7
Signed-off-by: zhu wenhui <wenhuix.zhu@intel.com>
---
tests/TestSuite_dual_vlan.py | 18 +++++++++---------
1 file changed, 9 insertions(+), 9 deletions(-)
diff --git a/tests/TestSuite_dual_vlan.py b/tests/TestSuite_dual_vlan.py
index 9cb3879..f9cb1c2 100644
--- a/tests/TestSuite_dual_vlan.py
+++ b/tests/TestSuite_dual_vlan.py
@@ -176,8 +176,8 @@ class TestDualVlan(TestCase):
self.dut.send_expect("rx_vlan rm %s %s" % (outvlan, dutRxPortId), "testpmd> ")
continue
- if mode == "qinq":
- self.verify("qinq(extend) %s" % modeName[mode] in out, "%s setting error" % mode)
+ if mode == "extend":
+ self.verify("extend %s" % modeName[mode] in out, "%s setting error" % mode)
continue
elif mode == "stripq":
continue
@@ -208,7 +208,7 @@ class TestDualVlan(TestCase):
if (self.nic in ["cavium_a063", "cavium_a064"]) and temp[2] == "on":
## Skip QinQ for cavium devices as it is not supported.
return
- self.mode_config(strip=temp[0], filter=temp[1], qinq=temp[2])
+ self.mode_config(strip=temp[0], filter=temp[1], extend=temp[2])
if (caseDef & txCase) != 0:
self.dut.send_expect('stop', "testpmd> ")
@@ -280,7 +280,7 @@ class TestDualVlan(TestCase):
"""
self.mode_config(filter="on")
self.mode_config(strip="off")
- self.mode_config(qinq="off")
+ self.mode_config(extend="off")
self.vlan_send_packet(outvlan)
out = self.get_tcpdump_package()
print out
@@ -305,7 +305,7 @@ class TestDualVlan(TestCase):
self.mode_config(filter="on")
self.mode_config(strip="off")
- self.mode_config(qinq="off")
+ self.mode_config(extend="off")
self.dut.send_expect("rx_vlan add %s %s" % (outvlan, dutRxPortId), "testpmd> ")
self.vlan_send_packet(outvlan)
@@ -323,7 +323,7 @@ class TestDualVlan(TestCase):
"""
self.mode_config(filter="off")
- self.mode_config(qinq="off")
+ self.mode_config(extend="off")
self.mode_config(strip="on")
if self.nic in [ "columbiaville_25g", "columbiaville_100g", "fortville_eagle", "fortville_spirit", "fortville_spirit_single", "fortville_25g", "fortpark_TLV", "carlsville"]:
self.dut.send_expect('rx_vlan add %s %s' % (outvlan, dutRxPortId), "testpmd> ")
@@ -345,7 +345,7 @@ class TestDualVlan(TestCase):
self.verify(self.nic not in ["columbiaville_25g", "columbiaville_100g", "fortville_eagle", "fortville_spirit", "fortville_spirit_single", "fortville_25g", "fortpark_TLV", "cavium_a063", "cavium_a064", "carlsville"], "%s NIC not support queue vlan strip " % self.nic)
self.mode_config(filter="off")
- self.mode_config(qinq="off")
+ self.mode_config(extend="off")
self.mode_config(strip="off")
self.mode_config(stripq="off")
if self.nic in ["fortville_eagle", "fortville_spirit", "fortville_spirit_single", "fortville_25g", "fortpark_TLV", "carlsville"]:
@@ -372,7 +372,7 @@ class TestDualVlan(TestCase):
Enable/Disable VLAN packets inserting
"""
self.mode_config(filter="off")
- self.mode_config(qinq="off")
+ self.mode_config(extend="off")
# hartwell need to set CTRL.VME for vlan insert
if(self.nic == "hartwell"):
@@ -406,7 +406,7 @@ class TestDualVlan(TestCase):
"""
self.verify(self.nic not in ["columbiaville_25g", "columbiaville_100g", "fortville_eagle", "fortville_spirit", "fortville_spirit_single", "fortville_25g", "fortpark_TLV", "hartwell", "carlsville"], "%s NIC not support tcpid " % self.nic)
- self.mode_config(filter="on", strip="on", qinq="on")
+ self.mode_config(filter="on", strip="on", extend="on")
# nic only support inner model, except fortville nic
self.dut.send_expect("vlan set inner tpid 1234 %s" % dutRxPortId, "testpmd> ")
self.vlan_send_packet(outvlan, invlan)
--
2.17.2
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [dts] [PATCH V2] tests/dual_vlan:replace qinq with extend
2019-10-30 8:32 [dts] [PATCH V2] tests/dual_vlan:replace qinq with extend zhu wenhui
@ 2019-10-30 8:31 ` Zhu, ShuaiX
2019-11-22 2:51 ` Tu, Lijuan
1 sibling, 0 replies; 3+ messages in thread
From: Zhu, ShuaiX @ 2019-10-30 8:31 UTC (permalink / raw)
To: Zhu, WenhuiX, dts; +Cc: Zhu, WenhuiX, Zhu, ShuaiX
[-- Attachment #1: Type: text/plain, Size: 4807 bytes --]
Tested-by: Zhu, ShuaiX <shuaix.zhu@intel.com>
> -----Original Message-----
> From: dts [mailto:dts-bounces@dpdk.org] On Behalf Of zhu wenhui
> Sent: Wednesday, October 30, 2019 4:33 PM
> To: dts@dpdk.org
> Cc: Zhu, WenhuiX <wenhuix.zhu@intel.com>
> Subject: [dts] [PATCH V2] tests/dual_vlan:replace qinq with extend
>
> Change the command according to the modification of DPDK-2a0b41984c7
>
> Signed-off-by: zhu wenhui <wenhuix.zhu@intel.com>
> ---
> tests/TestSuite_dual_vlan.py | 18 +++++++++---------
> 1 file changed, 9 insertions(+), 9 deletions(-)
>
> diff --git a/tests/TestSuite_dual_vlan.py b/tests/TestSuite_dual_vlan.py index
> 9cb3879..f9cb1c2 100644
> --- a/tests/TestSuite_dual_vlan.py
> +++ b/tests/TestSuite_dual_vlan.py
> @@ -176,8 +176,8 @@ class TestDualVlan(TestCase):
> self.dut.send_expect("rx_vlan rm %s %s" %
> (outvlan, dutRxPortId), "testpmd> ")
> continue
>
> - if mode == "qinq":
> - self.verify("qinq(extend) %s" % modeName[mode] in out,
> "%s setting error" % mode)
> + if mode == "extend":
> + self.verify("extend %s" % modeName[mode] in out, "%s
> + setting error" % mode)
> continue
> elif mode == "stripq":
> continue
> @@ -208,7 +208,7 @@ class TestDualVlan(TestCase):
> if (self.nic in ["cavium_a063", "cavium_a064"]) and temp[2] == "on":
> ## Skip QinQ for cavium devices as it is not supported.
> return
> - self.mode_config(strip=temp[0], filter=temp[1], qinq=temp[2])
> + self.mode_config(strip=temp[0], filter=temp[1], extend=temp[2])
>
> if (caseDef & txCase) != 0:
> self.dut.send_expect('stop', "testpmd> ") @@ -280,7 +280,7 @@
> class TestDualVlan(TestCase):
> """
> self.mode_config(filter="on")
> self.mode_config(strip="off")
> - self.mode_config(qinq="off")
> + self.mode_config(extend="off")
> self.vlan_send_packet(outvlan)
> out = self.get_tcpdump_package()
> print out
> @@ -305,7 +305,7 @@ class TestDualVlan(TestCase):
>
> self.mode_config(filter="on")
> self.mode_config(strip="off")
> - self.mode_config(qinq="off")
> + self.mode_config(extend="off")
>
> self.dut.send_expect("rx_vlan add %s %s" % (outvlan, dutRxPortId),
> "testpmd> ")
> self.vlan_send_packet(outvlan)
> @@ -323,7 +323,7 @@ class TestDualVlan(TestCase):
> """
>
> self.mode_config(filter="off")
> - self.mode_config(qinq="off")
> + self.mode_config(extend="off")
> self.mode_config(strip="on")
> if self.nic in [ "columbiaville_25g", "columbiaville_100g",
> "fortville_eagle", "fortville_spirit", "fortville_spirit_single", "fortville_25g",
> "fortpark_TLV", "carlsville"]:
> self.dut.send_expect('rx_vlan add %s %s' % (outvlan,
> dutRxPortId), "testpmd> ") @@ -345,7 +345,7 @@ class TestDualVlan(TestCase):
> self.verify(self.nic not in ["columbiaville_25g", "columbiaville_100g",
> "fortville_eagle", "fortville_spirit", "fortville_spirit_single", "fortville_25g",
> "fortpark_TLV", "cavium_a063", "cavium_a064", "carlsville"], "%s NIC not support
> queue vlan strip " % self.nic)
>
> self.mode_config(filter="off")
> - self.mode_config(qinq="off")
> + self.mode_config(extend="off")
> self.mode_config(strip="off")
> self.mode_config(stripq="off")
> if self.nic in ["fortville_eagle", "fortville_spirit", "fortville_spirit_single",
> "fortville_25g", "fortpark_TLV", "carlsville"]:
> @@ -372,7 +372,7 @@ class TestDualVlan(TestCase):
> Enable/Disable VLAN packets inserting
> """
> self.mode_config(filter="off")
> - self.mode_config(qinq="off")
> + self.mode_config(extend="off")
>
> # hartwell need to set CTRL.VME for vlan insert
> if(self.nic == "hartwell"):
> @@ -406,7 +406,7 @@ class TestDualVlan(TestCase):
> """
> self.verify(self.nic not in ["columbiaville_25g", "columbiaville_100g",
> "fortville_eagle", "fortville_spirit", "fortville_spirit_single", "fortville_25g",
> "fortpark_TLV", "hartwell", "carlsville"], "%s NIC not support tcpid " % self.nic)
>
> - self.mode_config(filter="on", strip="on", qinq="on")
> + self.mode_config(filter="on", strip="on", extend="on")
> # nic only support inner model, except fortville nic
> self.dut.send_expect("vlan set inner tpid 1234 %s" % dutRxPortId,
> "testpmd> ")
> self.vlan_send_packet(outvlan, invlan)
> --
> 2.17.2
[-- Attachment #2: TestDualVlan.log --]
[-- Type: application/octet-stream, Size: 726919 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [dts] [PATCH V2] tests/dual_vlan:replace qinq with extend
2019-10-30 8:32 [dts] [PATCH V2] tests/dual_vlan:replace qinq with extend zhu wenhui
2019-10-30 8:31 ` Zhu, ShuaiX
@ 2019-11-22 2:51 ` Tu, Lijuan
1 sibling, 0 replies; 3+ messages in thread
From: Tu, Lijuan @ 2019-11-22 2:51 UTC (permalink / raw)
To: Zhu, WenhuiX, dts; +Cc: Zhu, WenhuiX
Applied, thanks
> -----Original Message-----
> From: dts [mailto:dts-bounces@dpdk.org] On Behalf Of zhu wenhui
> Sent: Wednesday, October 30, 2019 4:33 PM
> To: dts@dpdk.org
> Cc: Zhu, WenhuiX <wenhuix.zhu@intel.com>
> Subject: [dts] [PATCH V2] tests/dual_vlan:replace qinq with extend
>
> Change the command according to the modification of DPDK-2a0b41984c7
>
> Signed-off-by: zhu wenhui <wenhuix.zhu@intel.com>
> ---
> tests/TestSuite_dual_vlan.py | 18 +++++++++---------
> 1 file changed, 9 insertions(+), 9 deletions(-)
>
> diff --git a/tests/TestSuite_dual_vlan.py b/tests/TestSuite_dual_vlan.py index
> 9cb3879..f9cb1c2 100644
> --- a/tests/TestSuite_dual_vlan.py
> +++ b/tests/TestSuite_dual_vlan.py
> @@ -176,8 +176,8 @@ class TestDualVlan(TestCase):
> self.dut.send_expect("rx_vlan rm %s %s" % (outvlan,
> dutRxPortId), "testpmd> ")
> continue
>
> - if mode == "qinq":
> - self.verify("qinq(extend) %s" % modeName[mode] in out, "%s
> setting error" % mode)
> + if mode == "extend":
> + self.verify("extend %s" % modeName[mode] in out, "%s
> + setting error" % mode)
> continue
> elif mode == "stripq":
> continue
> @@ -208,7 +208,7 @@ class TestDualVlan(TestCase):
> if (self.nic in ["cavium_a063", "cavium_a064"]) and temp[2] == "on":
> ## Skip QinQ for cavium devices as it is not supported.
> return
> - self.mode_config(strip=temp[0], filter=temp[1], qinq=temp[2])
> + self.mode_config(strip=temp[0], filter=temp[1], extend=temp[2])
>
> if (caseDef & txCase) != 0:
> self.dut.send_expect('stop', "testpmd> ") @@ -280,7 +280,7 @@
> class TestDualVlan(TestCase):
> """
> self.mode_config(filter="on")
> self.mode_config(strip="off")
> - self.mode_config(qinq="off")
> + self.mode_config(extend="off")
> self.vlan_send_packet(outvlan)
> out = self.get_tcpdump_package()
> print out
> @@ -305,7 +305,7 @@ class TestDualVlan(TestCase):
>
> self.mode_config(filter="on")
> self.mode_config(strip="off")
> - self.mode_config(qinq="off")
> + self.mode_config(extend="off")
>
> self.dut.send_expect("rx_vlan add %s %s" % (outvlan, dutRxPortId),
> "testpmd> ")
> self.vlan_send_packet(outvlan)
> @@ -323,7 +323,7 @@ class TestDualVlan(TestCase):
> """
>
> self.mode_config(filter="off")
> - self.mode_config(qinq="off")
> + self.mode_config(extend="off")
> self.mode_config(strip="on")
> if self.nic in [ "columbiaville_25g", "columbiaville_100g",
> "fortville_eagle", "fortville_spirit", "fortville_spirit_single", "fortville_25g",
> "fortpark_TLV", "carlsville"]:
> self.dut.send_expect('rx_vlan add %s %s' % (outvlan, dutRxPortId),
> "testpmd> ") @@ -345,7 +345,7 @@ class TestDualVlan(TestCase):
> self.verify(self.nic not in ["columbiaville_25g", "columbiaville_100g",
> "fortville_eagle", "fortville_spirit", "fortville_spirit_single", "fortville_25g",
> "fortpark_TLV", "cavium_a063", "cavium_a064", "carlsville"], "%s NIC not
> support queue vlan strip " % self.nic)
>
> self.mode_config(filter="off")
> - self.mode_config(qinq="off")
> + self.mode_config(extend="off")
> self.mode_config(strip="off")
> self.mode_config(stripq="off")
> if self.nic in ["fortville_eagle", "fortville_spirit", "fortville_spirit_single",
> "fortville_25g", "fortpark_TLV", "carlsville"]:
> @@ -372,7 +372,7 @@ class TestDualVlan(TestCase):
> Enable/Disable VLAN packets inserting
> """
> self.mode_config(filter="off")
> - self.mode_config(qinq="off")
> + self.mode_config(extend="off")
>
> # hartwell need to set CTRL.VME for vlan insert
> if(self.nic == "hartwell"):
> @@ -406,7 +406,7 @@ class TestDualVlan(TestCase):
> """
> self.verify(self.nic not in ["columbiaville_25g", "columbiaville_100g",
> "fortville_eagle", "fortville_spirit", "fortville_spirit_single", "fortville_25g",
> "fortpark_TLV", "hartwell", "carlsville"], "%s NIC not support tcpid " % self.nic)
>
> - self.mode_config(filter="on", strip="on", qinq="on")
> + self.mode_config(filter="on", strip="on", extend="on")
> # nic only support inner model, except fortville nic
> self.dut.send_expect("vlan set inner tpid 1234 %s" % dutRxPortId,
> "testpmd> ")
> self.vlan_send_packet(outvlan, invlan)
> --
> 2.17.2
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2019-11-22 2:51 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-10-30 8:32 [dts] [PATCH V2] tests/dual_vlan:replace qinq with extend zhu wenhui
2019-10-30 8:31 ` Zhu, ShuaiX
2019-11-22 2:51 ` 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).