From: Lingli Chen <linglix.chen@intel.com>
To: dts@dpdk.org
Cc: zhiminx.huang@intel.com, Lingli Chen <linglix.chen@intel.com>
Subject: [dts][PATCH V2 2/2] tests/TestSuite_*: skip igb_uio cases
Date: Thu, 15 Dec 2022 03:54:25 -0500 [thread overview]
Message-ID: <20221215085425.32477-2-linglix.chen@intel.com> (raw)
In-Reply-To: <20221215085425.32477-1-linglix.chen@intel.com>
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 <linglix.chen@intel.com>
---
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()
--
2.17.1
next prev parent reply other threads:[~2022-12-15 9:51 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-12-15 8:54 [dts][PATCH V2 1/2] framework/test_case: add skip_unsupported_host_driver decorator Lingli Chen
2022-12-15 8:54 ` Lingli Chen [this message]
2022-12-22 8:35 ` [dts][PATCH V2 2/2] tests/TestSuite_*: skip igb_uio cases Li, WeiyuanX
2022-12-22 8:51 ` 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=20221215085425.32477-2-linglix.chen@intel.com \
--to=linglix.chen@intel.com \
--cc=dts@dpdk.org \
--cc=zhiminx.huang@intel.com \
/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).