test suite reviews and discussions
 help / color / mirror / Atom feed
* Re: [dts] [PATCH V1 2/2] conf/checklist: add dual_vlan not support NIC
  2021-10-20 10:09 ` [dts] [PATCH V1 2/2] conf/checklist: add dual_vlan not " Yan Xia
@ 2021-10-20  2:54   ` Chen, LingliX
  2021-10-21  7:01   ` Peng, Yuan
  1 sibling, 0 replies; 6+ messages in thread
From: Chen, LingliX @ 2021-10-20  2:54 UTC (permalink / raw)
  To: dts

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


> -----Original Message-----
> From: dts <dts-bounces@dpdk.org> On Behalf Of Yan Xia
> Sent: Wednesday, October 20, 2021 6:09 PM
> To: dts@dpdk.org
> Cc: Xia, YanX <yanx.xia@intel.com>
> Subject: [dts] [PATCH V1 2/2] conf/checklist: add dual_vlan not support NIC
> 
> add dual_vlan not support NIC
> 
> Signed-off-by: Yan Xia <yanx.xia@intel.com>
> ---

Tested-by: Yan Xia <yanx.xia@intel.com>

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

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [dts] [PATCH V1 0/2] *** add dual_vlan support and not support
@ 2021-10-20 10:09 Yan Xia
  2021-10-20 10:09 ` [dts] [PATCH V1 1/2] tests/generic_flow_api: add dual_vlan support NIC Yan Xia
  2021-10-20 10:09 ` [dts] [PATCH V1 2/2] conf/checklist: add dual_vlan not " Yan Xia
  0 siblings, 2 replies; 6+ messages in thread
From: Yan Xia @ 2021-10-20 10:09 UTC (permalink / raw)
  To: dts; +Cc: Yan Xia

*** add dual_vlan support and not support NIC ***

Yan Xia (2):
  tests/generic_flow_api: add dual_vlan support NIC
  conf/checklist: add dual_vlan not support NIC

 conf/test_case_checklist.json       | 16 ++++++++++++++++
 tests/TestSuite_generic_flow_api.py |  2 +-
 2 files changed, 17 insertions(+), 1 deletion(-)

-- 
2.32.0


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [dts] [PATCH V1 1/2] tests/generic_flow_api: add dual_vlan support NIC
  2021-10-20 10:09 [dts] [PATCH V1 0/2] *** add dual_vlan support and not support Yan Xia
@ 2021-10-20 10:09 ` Yan Xia
  2021-10-20 10:09 ` [dts] [PATCH V1 2/2] conf/checklist: add dual_vlan not " Yan Xia
  1 sibling, 0 replies; 6+ messages in thread
From: Yan Xia @ 2021-10-20 10:09 UTC (permalink / raw)
  To: dts; +Cc: Yan Xia

add dual_vlan support NIC

Signed-off-by: Yan Xia <yanx.xia@intel.com>
---
 tests/TestSuite_generic_flow_api.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/TestSuite_generic_flow_api.py b/tests/TestSuite_generic_flow_api.py
index 2c17e4fc..dfd8275d 100644
--- a/tests/TestSuite_generic_flow_api.py
+++ b/tests/TestSuite_generic_flow_api.py
@@ -2484,7 +2484,7 @@ class TestGeneric_flow_api(TestCase):
         Test with flow type dual vlan(QinQ).
         """
         self.verify(self.nic in ["fortville_eagle", "fortville_spirit", "fortville_spirit_single", "fortville_25g",
-                                 "carlsville"], "NIC Unsupported: " + str(self.nic))
+                                 "carlsville", "fortpark_BASE-T", "fortpark_TLV"], "NIC Unsupported: " + str(self.nic))
         for queue in testQueues:
             self.pmdout.start_testpmd(
                 "Default", "  --portmask=0x1 --rxq=%d --txq=%d" % (queue, queue))
-- 
2.32.0


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [dts] [PATCH V1 2/2] conf/checklist: add dual_vlan not support NIC
  2021-10-20 10:09 [dts] [PATCH V1 0/2] *** add dual_vlan support and not support Yan Xia
  2021-10-20 10:09 ` [dts] [PATCH V1 1/2] tests/generic_flow_api: add dual_vlan support NIC Yan Xia
@ 2021-10-20 10:09 ` Yan Xia
  2021-10-20  2:54   ` Chen, LingliX
  2021-10-21  7:01   ` Peng, Yuan
  1 sibling, 2 replies; 6+ messages in thread
From: Yan Xia @ 2021-10-20 10:09 UTC (permalink / raw)
  To: dts; +Cc: Yan Xia

add dual_vlan not support NIC

Signed-off-by: Yan Xia <yanx.xia@intel.com>
---
 conf/test_case_checklist.json | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)

diff --git a/conf/test_case_checklist.json b/conf/test_case_checklist.json
index 22f0113f..310ba4a1 100644
--- a/conf/test_case_checklist.json
+++ b/conf/test_case_checklist.json
@@ -3756,5 +3756,21 @@
              "Bug ID": "",
              "Comments": "NIC not support this case"
          }
+    ],
+"dual_vlan": [
+         {
+             "OS": [
+                 "ALL"
+             ],
+             "NIC": [
+                 "niantic",
+                 "foxville"
+             ],
+             "Target": [
+                 "ALL"
+             ],
+             "Bug ID": "",
+             "Comments": "NIC not support this case"
+         }
     ]
 }
-- 
2.32.0


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [dts] [PATCH V1 2/2] conf/checklist: add dual_vlan not support NIC
  2021-10-20 10:09 ` [dts] [PATCH V1 2/2] conf/checklist: add dual_vlan not " Yan Xia
  2021-10-20  2:54   ` Chen, LingliX
@ 2021-10-21  7:01   ` Peng, Yuan
  2021-10-25  9:07     ` Tu, Lijuan
  1 sibling, 1 reply; 6+ messages in thread
From: Peng, Yuan @ 2021-10-21  7:01 UTC (permalink / raw)
  To: Xia, YanX, dts; +Cc: Xia, YanX

Acked by Peng, Yuan <yuan.peng@intel.com>

-----Original Message-----
From: dts <dts-bounces@dpdk.org> On Behalf Of Yan Xia
Sent: Wednesday, October 20, 2021 6:09 PM
To: dts@dpdk.org
Cc: Xia, YanX <yanx.xia@intel.com>
Subject: [dts] [PATCH V1 2/2] conf/checklist: add dual_vlan not support NIC

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [dts] [PATCH V1 2/2] conf/checklist: add dual_vlan not support NIC
  2021-10-21  7:01   ` Peng, Yuan
@ 2021-10-25  9:07     ` Tu, Lijuan
  0 siblings, 0 replies; 6+ messages in thread
From: Tu, Lijuan @ 2021-10-25  9:07 UTC (permalink / raw)
  To: Peng, Yuan, Xia, YanX, dts; +Cc: Xia, YanX



> -----Original Message-----
> From: dts <dts-bounces@dpdk.org> On Behalf Of Peng, Yuan
> Sent: 2021年10月21日 15:02
> To: Xia, YanX <yanx.xia@intel.com>; dts@dpdk.org
> Cc: Xia, YanX <yanx.xia@intel.com>
> Subject: Re: [dts] [PATCH V1 2/2] conf/checklist: add dual_vlan not support NIC
> 
> Acked by Peng, Yuan <yuan.peng@intel.com>

Applied

> 
> -----Original Message-----
> From: dts <dts-bounces@dpdk.org> On Behalf Of Yan Xia
> Sent: Wednesday, October 20, 2021 6:09 PM
> To: dts@dpdk.org
> Cc: Xia, YanX <yanx.xia@intel.com>
> Subject: [dts] [PATCH V1 2/2] conf/checklist: add dual_vlan not support NIC

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2021-10-25  9:07 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-10-20 10:09 [dts] [PATCH V1 0/2] *** add dual_vlan support and not support Yan Xia
2021-10-20 10:09 ` [dts] [PATCH V1 1/2] tests/generic_flow_api: add dual_vlan support NIC Yan Xia
2021-10-20 10:09 ` [dts] [PATCH V1 2/2] conf/checklist: add dual_vlan not " Yan Xia
2021-10-20  2:54   ` Chen, LingliX
2021-10-21  7:01   ` Peng, Yuan
2021-10-25  9:07     ` 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).