From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 0F2F442BE2; Tue, 30 May 2023 10:30:59 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 0BE49410DD; Tue, 30 May 2023 10:30:59 +0200 (CEST) Received: from mga17.intel.com (mga17.intel.com [192.55.52.151]) by mails.dpdk.org (Postfix) with ESMTP id 92A59406BC for ; Tue, 30 May 2023 10:30:57 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1685435457; x=1716971457; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=GJga76NspPATUUhMOM2pw7jvOAQOBAbuycquTeqnea8=; b=D06bnI/aK4IIz4wWMzt9fuQdsX8J1cC4Ml3x8GjyVxrhyS7OOZDfqr1R QL9fGBT4x+JOFU2OwQBEQkw3hkIjsC4coNQe+p1US5PWM+eGMyKNooQC0 Zt5SuYiaQ3N1s7K8a9ZCAi2JHk6/9QmmeRq8JQd9p2XdKjLKrIPEG9TSQ UlOi/9+RjUwZMv+b6l4nS33jEFaN31UkA2++5dd5g8VBUsFoC4Wmh+v6s tWfwXdSBpfaPQBxtOEZtPtPK0eoc5IPgYN8da1KhSMxLPUTiBbQIng4OF F6C3+uJUnLurHsmt6a6vC95e/knArFN5OL1wsq3sUKfnTnw91/vjqRAnL w==; X-IronPort-AV: E=McAfee;i="6600,9927,10725"; a="335201786" X-IronPort-AV: E=Sophos;i="6.00,203,1681196400"; d="scan'208";a="335201786" Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by fmsmga107.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 30 May 2023 01:30:57 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10725"; a="796188058" X-IronPort-AV: E=Sophos;i="6.00,203,1681196400"; d="scan'208";a="796188058" Received: from unknown (HELO localhost.localdomain) ([10.239.252.248]) by fmsmga003-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 30 May 2023 01:30:56 -0700 From: Lingli Chen To: dts@dpdk.org Cc: Lingli Chen 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 Message-Id: <20230530083114.3678-3-linglix.chen@intel.com> X-Mailer: git-send-email 2.27.0 In-Reply-To: <20230530083114.3678-1-linglix.chen@intel.com> References: <20230530083114.3678-1-linglix.chen@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=y Content-Transfer-Encoding: 8bit X-BeenThere: dts@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: test suite reviews and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dts-bounces@dpdk.org 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 --- 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