test suite reviews and discussions
 help / color / mirror / Atom feed
From: Lingli Chen <linglix.chen@intel.com>
To: dts@dpdk.org
Cc: Lingli Chen <linglix.chen@intel.com>
Subject: [dts][PATCH V1 2/2] tests/*: add ICE_25G-E810_XXV_SFP in support suite
Date: Tue, 30 May 2023 16:31:14 +0800	[thread overview]
Message-ID: <20230530083114.3678-3-linglix.chen@intel.com> (raw)
In-Reply-To: <20230530083114.3678-1-linglix.chen@intel.com>

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain; charset=y, Size: 4440 bytes --]

add in 7 support suites:
ice_iavf_rx_timestamp/ipgre/nvgre/runtime_vf_queue_number_kernel/rxtx_offload/veb_switch/vf_rss

Signed-off-by: Lingli Chen <linglix.chen@intel.com>
---
 tests/TestSuite_ice_iavf_rx_timestamp.py          | 7 ++++++-
 tests/TestSuite_ipgre.py                          | 1 +
 tests/TestSuite_nvgre.py                          | 1 +
 tests/TestSuite_runtime_vf_queue_number_kernel.py | 1 +
 tests/TestSuite_rxtx_offload.py                   | 1 +
 tests/TestSuite_veb_switch.py                     | 1 +
 tests/TestSuite_vf_rss.py                         | 1 +
 7 files changed, 12 insertions(+), 1 deletion(-)

diff --git a/tests/TestSuite_ice_iavf_rx_timestamp.py b/tests/TestSuite_ice_iavf_rx_timestamp.py
index dc61da6c..309ba4bc 100644
--- a/tests/TestSuite_ice_iavf_rx_timestamp.py
+++ b/tests/TestSuite_ice_iavf_rx_timestamp.py
@@ -75,7 +75,12 @@ class IAVFTimestampConfigureTest(TestCase):
         """
         self.verify(
             self.nic
-            in ["ICE_25G-E810C_SFP", "ICE_100G-E810C_QSFP", "ICE_25G-E823C_QSFP"],
+            in [
+                "ICE_25G-E810C_SFP",
+                "ICE_25G-E810_XXV_SFP",
+                "ICE_100G-E810C_QSFP",
+                "ICE_25G-E823C_QSFP",
+            ],
             "%s nic not support vf timestamp" % self.nic,
         )
         self.dut_ports = self.dut.get_ports(self.nic)
diff --git a/tests/TestSuite_ipgre.py b/tests/TestSuite_ipgre.py
index efb5e13b..bbd81a19 100644
--- a/tests/TestSuite_ipgre.py
+++ b/tests/TestSuite_ipgre.py
@@ -46,6 +46,7 @@ class TestIpgre(TestCase):
                 "I40E_25G-25G_SFP28",
                 "I40E_10G-10G_BASE_T_BC",
                 "ICE_25G-E823C_QSFP",
+                "ICE_25G-E810_XXV_SFP",
                 "ICE_25G-E810C_SFP",
                 "ICE_100G-E810C_QSFP",
                 "cavium_a063",
diff --git a/tests/TestSuite_nvgre.py b/tests/TestSuite_nvgre.py
index f47acc5d..e4bdf752 100644
--- a/tests/TestSuite_nvgre.py
+++ b/tests/TestSuite_nvgre.py
@@ -389,6 +389,7 @@ class TestNvgre(TestCase):
         elif self.nic in [
             "ICE_25G-E810C_SFP",
             "ICE_100G-E810C_QSFP",
+            "ICE_25G-E810_XXV_SFP",
             "ICE_25G-E823C_QSFP",
         ]:
             print("Intel® Ethernet 800 Series support default none VECTOR")
diff --git a/tests/TestSuite_runtime_vf_queue_number_kernel.py b/tests/TestSuite_runtime_vf_queue_number_kernel.py
index a5a9a974..1ab55f8e 100644
--- a/tests/TestSuite_runtime_vf_queue_number_kernel.py
+++ b/tests/TestSuite_runtime_vf_queue_number_kernel.py
@@ -36,6 +36,7 @@ class TestRuntimeVfQueueNumberKernel(TestCase):
                 "I40E_10G-10G_BASE_T_BC",
                 "ICE_100G-E810C_QSFP",
                 "ICE_25G-E810C_SFP",
+                "ICE_25G-E810_XXV_SFP",
                 "ICE_25G-E823C_QSFP",
             ],
             "Only supported by Intel® Ethernet 700 Series and Intel® Ethernet 800 Series",
diff --git a/tests/TestSuite_rxtx_offload.py b/tests/TestSuite_rxtx_offload.py
index 351c5168..e33d6429 100644
--- a/tests/TestSuite_rxtx_offload.py
+++ b/tests/TestSuite_rxtx_offload.py
@@ -78,6 +78,7 @@ class TestRxTx_Offload(TestCase):
                 "cavium_a064",
                 "ICE_25G-E810C_SFP",
                 "ICE_100G-E810C_QSFP",
+                "ICE_25G-E810_XXV_SFP",
                 "ICE_25G-E823C_QSFP",
             ],
             "NIC Unsupported: " + str(self.nic),
diff --git a/tests/TestSuite_veb_switch.py b/tests/TestSuite_veb_switch.py
index 0a0b96bb..4576e1af 100644
--- a/tests/TestSuite_veb_switch.py
+++ b/tests/TestSuite_veb_switch.py
@@ -144,6 +144,7 @@ class TestVEBSwitching(TestCase):
                 "I40E_10G-10G_BASE_T_BC",
                 "ICE_100G-E810C_QSFP",
                 "ICE_25G-E810C_SFP",
+                "ICE_25G-E810_XXV_SFP",
                 "ICE_25G-E823C_QSFP",
             ],
             "NIC Unsupported: " + str(self.nic),
diff --git a/tests/TestSuite_vf_rss.py b/tests/TestSuite_vf_rss.py
index c06963af..1f266ad1 100644
--- a/tests/TestSuite_vf_rss.py
+++ b/tests/TestSuite_vf_rss.py
@@ -280,6 +280,7 @@ class TestVfRss(TestCase):
                 "I40E_10G-10G_BASE_T_BC",
                 "ICE_25G-E823C_QSFP",
                 "ICE_25G-E810C_SFP",
+                "ICE_25G-E810_XXV_SFP",
                 "ICE_100G-E810C_QSFP",
             ],
             "NIC Unsupported: " + str(self.nic),
-- 
2.34.1


  parent reply	other threads:[~2023-05-30  8:30 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-05-30  8:31 [dts][PATCH V1 0/2] tests/*: add ICE_25G-E810_XXV_SFP in support suit Lingli Chen
2023-05-30  8:31 ` [dts][PATCH V1 1/2] conf/test_case_checklist: add ICE_25G-E810_XXV_SFP NIC in case list Lingli Chen
2023-05-30  8:31 ` Lingli Chen [this message]
2023-06-07  6:05   ` [dts][PATCH V1 2/2] tests/*: add ICE_25G-E810_XXV_SFP in support suite lijuan.tu

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=20230530083114.3678-3-linglix.chen@intel.com \
    --to=linglix.chen@intel.com \
    --cc=dts@dpdk.org \
    /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).