From patchwork Fri Dec 9 07:08:07 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Lingli Chen X-Patchwork-Id: 120691 Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 5D923A0093; Fri, 9 Dec 2022 09:05:06 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 5956B42D0B; Fri, 9 Dec 2022 09:05:06 +0100 (CET) Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by mails.dpdk.org (Postfix) with ESMTP id F37B740E0F for ; Fri, 9 Dec 2022 09:05:03 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1670573104; x=1702109104; h=from:to:cc:subject:date:message-id:in-reply-to: references; bh=IPrOZOgY42ERkDwSjoYb4GalLMm+FKOS2YZF0UmmL9A=; b=WCiKrjYNWLm3omGhykyrL/KPLNaNE+5PgcaHNGLThI1q4CD6LIr9hejL eNSIc2zDzgNIGtP1/96rxV2SdwXxzCC5bYSJuY/p1MdvG9POk/EqNPtDl TFy8pwcEHbvhyFcsltucEkOlnmeiifs4awLPVCG6chOycYsPAHcTg3O/2 /4HMHRGuhIw/83ZfcjXEC/fzK9MV+hMK1QwiM32kRHlivfkop60YMrwkp UaocW7Vz3AA065Ns2OfyFQki5HllNvEDG+dy0evXSe97KbIVkMxkZ8C2k wirdZi5InHMKzeF3HanOAxnqlCFJKHxffu321l7GbD4ZKnCBSk+I93zU4 Q==; X-IronPort-AV: E=McAfee;i="6500,9779,10555"; a="305051978" X-IronPort-AV: E=Sophos;i="5.96,230,1665471600"; d="scan'208";a="305051978" Received: from orsmga008.jf.intel.com ([10.7.209.65]) by orsmga101.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 09 Dec 2022 00:05:03 -0800 X-IronPort-AV: E=McAfee;i="6500,9779,10555"; a="678074623" X-IronPort-AV: E=Sophos;i="5.96,230,1665471600"; d="scan'208";a="678074623" Received: from unknown (HELO localhost.localdomain) ([10.239.252.99]) by orsmga008-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 09 Dec 2022 00:05:01 -0800 From: Lingli Chen To: dts@dpdk.org Cc: zhiminx.huang@intel.com, Lingli Chen Subject: [dts][PATCH V2 5/5] tests/TestSuite_*: skip igb_uio cases Date: Fri, 9 Dec 2022 02:08:07 -0500 Message-Id: <20221209070807.1134-6-linglix.chen@intel.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20221209070807.1134-1-linglix.chen@intel.com> References: <20221209070807.1134-1-linglix.chen@intel.com> 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 7 suits (external_memory/ip_pipeline/qinq_filter/veb_switch/vf_interrupt_pmd/vf_macfilter/vf_packet_rxtx) skip igb_uio cases. Signed-off-by: Lingli Chen --- V2: reformat tests/TestSuite_vf_interrupt_pmd.py tests/TestSuite_external_memory.py | 4 +++- tests/TestSuite_ip_pipeline.py | 3 ++- tests/TestSuite_qinq_filter.py | 4 +++- tests/TestSuite_veb_switch.py | 3 ++- tests/TestSuite_vf_interrupt_pmd.py | 3 ++- tests/TestSuite_vf_macfilter.py | 4 +++- tests/TestSuite_vf_packet_rxtx.py | 4 +++- 7 files changed, 18 insertions(+), 7 deletions(-) diff --git a/tests/TestSuite_external_memory.py b/tests/TestSuite_external_memory.py index 8163a7ec..c565eba8 100644 --- a/tests/TestSuite_external_memory.py +++ b/tests/TestSuite_external_memory.py @@ -12,7 +12,7 @@ import time import framework.utils as utils from framework.pmd_output import PmdOutput -from framework.test_case import TestCase +from framework.test_case import TestCase, skip_unsupported_host_driver class TestExternalMemory(TestCase): @@ -62,6 +62,7 @@ class TestExternalMemory(TestCase): self.dut.bind_interfaces_linux(driver="vfio-pci") + @skip_unsupported_host_driver(["vfio-pci"]) def test_IGB_UIO_xmem(self): """ Verifier IGB_UIO and anonymous memory allocation @@ -75,6 +76,7 @@ class TestExternalMemory(TestCase): ) self.verifier_result() + @skip_unsupported_host_driver(["vfio-pci"]) def test_IGB_UIO_xmemhuage(self): """ Verifier IGB_UIO and anonymous hugepage memory allocation diff --git a/tests/TestSuite_ip_pipeline.py b/tests/TestSuite_ip_pipeline.py index 80a7dbc8..043516dd 100644 --- a/tests/TestSuite_ip_pipeline.py +++ b/tests/TestSuite_ip_pipeline.py @@ -13,7 +13,7 @@ from scapy.utils import hexstr, rdpcap, wrpcap from framework.exception import VerifyFailure from framework.packet import Packet -from framework.test_case import TestCase +from framework.test_case import TestCase, skip_unsupported_host_driver class TestIPPipeline(TestCase): @@ -605,6 +605,7 @@ class TestIPPipeline(TestCase): cmd = "^C" self.dut.send_expect(cmd, "# ", 20) + @skip_unsupported_host_driver(["vfio-pci"]) def test_pfdpdk_vf_l2fwd_pipeline(self): """ VF l2fwd pipeline, PF bound to DPDK driver diff --git a/tests/TestSuite_qinq_filter.py b/tests/TestSuite_qinq_filter.py index 6b5b756c..87653681 100644 --- a/tests/TestSuite_qinq_filter.py +++ b/tests/TestSuite_qinq_filter.py @@ -13,7 +13,7 @@ import time import framework.utils as utils from framework.pmd_output import PmdOutput -from framework.test_case import TestCase +from framework.test_case import TestCase, skip_unsupported_host_driver class TestQinqFilter(TestCase): @@ -208,6 +208,7 @@ class TestQinqFilter(TestCase): self.dut.send_expect("quit", "#") + @skip_unsupported_host_driver(["vfio-pci"]) def test_qinq_packet_filter_VF_queues(self): """ qinq filter packet received by assign VF queues @@ -303,6 +304,7 @@ class TestQinqFilter(TestCase): self.verify(not error_message, error_message) + @skip_unsupported_host_driver(["vfio-pci"]) def test_qinq_filter_with_diffierent_tpid(self): """ qinq filter packet with different tpid received by assign VF queues diff --git a/tests/TestSuite_veb_switch.py b/tests/TestSuite_veb_switch.py index 77ba9559..f391a0ee 100644 --- a/tests/TestSuite_veb_switch.py +++ b/tests/TestSuite_veb_switch.py @@ -17,7 +17,7 @@ from framework.packet import Packet from framework.pmd_output import PmdOutput from framework.project_dpdk import DPDKdut from framework.settings import HEADER_SIZE -from framework.test_case import TestCase +from framework.test_case import TestCase, skip_unsupported_host_driver from framework.utils import RED from framework.virt_dut import VirtDut @@ -384,6 +384,7 @@ class TestVEBSwitching(TestCase): "VF1 didn't receive packets from VF0, the vlan filter doen't work", ) + @skip_unsupported_host_driver(["vfio-pci"]) def test_VEB_switching_inter_vfs_and_pf(self): """ DPDK PF, then create 2VFs, PF in the host running dpdk testpmd, VFs diff --git a/tests/TestSuite_vf_interrupt_pmd.py b/tests/TestSuite_vf_interrupt_pmd.py index 5854cb0c..4fdff601 100644 --- a/tests/TestSuite_vf_interrupt_pmd.py +++ b/tests/TestSuite_vf_interrupt_pmd.py @@ -13,7 +13,7 @@ import time import framework.utils as utils from framework.packet import Packet -from framework.test_case import TestCase +from framework.test_case import TestCase, skip_unsupported_host_driver from framework.virt_common import VM @@ -288,6 +288,7 @@ class TestVfInterruptPmd(TestCase): "lcore %s not sleeps" % self.core_user, ) + @skip_unsupported_host_driver(["vfio-pci"]) def test_nic_interrupt_PF_igb_uio(self): """ Check Interrupt for PF with igb_uio driver diff --git a/tests/TestSuite_vf_macfilter.py b/tests/TestSuite_vf_macfilter.py index dc4e1098..974d0e40 100644 --- a/tests/TestSuite_vf_macfilter.py +++ b/tests/TestSuite_vf_macfilter.py @@ -7,7 +7,7 @@ import time from framework.pmd_output import PmdOutput from framework.settings import DPDK_DCFMODE_SETTING, load_global_setting -from framework.test_case import TestCase +from framework.test_case import TestCase, skip_unsupported_host_driver from framework.virt_common import VM VM_CORES_MASK = "all" @@ -229,6 +229,7 @@ class TestVfMacFilter(TestCase): self.setup_2pf_2vf_1vm_env(False, driver="") self.send_packet_and_verify() + @skip_unsupported_host_driver(["vfio-pci"]) def test_dpdk_2pf_2vf_1vm_mac_add_filter(self): """ test case for dpdk pf and dpdk vf 2pf_2vf_1vm MAC filter scenario. @@ -253,6 +254,7 @@ class TestVfMacFilter(TestCase): self.setup_2pf_2vf_1vm_env(False, driver="igb_uio") self.send_packet_and_verify() + @skip_unsupported_host_driver(["vfio-pci"]) def test_dpdk_2pf_2vf_1vm_iplink_macfilter(self): """ test case for dpdk pf and dpdk vf 2pf_2vf_1vm MAC filter scenario. diff --git a/tests/TestSuite_vf_packet_rxtx.py b/tests/TestSuite_vf_packet_rxtx.py index 5d57c462..0d52b6d3 100644 --- a/tests/TestSuite_vf_packet_rxtx.py +++ b/tests/TestSuite_vf_packet_rxtx.py @@ -7,7 +7,7 @@ import time from framework.packet import Packet from framework.pmd_output import PmdOutput -from framework.test_case import TestCase +from framework.test_case import TestCase, skip_unsupported_host_driver from framework.virt_common import VM VM_CORES_MASK = "all" @@ -164,6 +164,7 @@ class TestVfPacketRxtx(TestCase): self.packet_rx_tx(driver="") ######2. test case for dpdk pf and dpdk vf 2pf_2vf_1vm scenario packet rx tx. + @skip_unsupported_host_driver(["vfio-pci"]) def test_dpdk_2pf_2vf_1vm(self): self.packet_rx_tx(driver="igb_uio") @@ -266,6 +267,7 @@ class TestVfPacketRxtx(TestCase): self.setup_3vf_2vm_env(driver="") self.vf_reset() + @skip_unsupported_host_driver(["vfio-pci"]) def test_dpdk_pf_vf_reset(self): self.setup_3vf_2vm_env(driver="igb_uio") self.vf_reset()