From patchwork Fri Dec 9 07:08:02 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Lingli Chen X-Patchwork-Id: 120686 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 CB0B5A0093; Fri, 9 Dec 2022 09:04:55 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id B198F410D2; Fri, 9 Dec 2022 09:04:55 +0100 (CET) Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by mails.dpdk.org (Postfix) with ESMTP id 7E87940E0F for ; Fri, 9 Dec 2022 09:04:54 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1670573094; x=1702109094; h=from:to:cc:subject:date:message-id; bh=cqVkYn5fuSCIrUrsPdD76uOpW179p9jdmn+nywK38Uo=; b=jQjkQH1VLYdrRQ52v3SUeijdRZ50PBa8HeLTijNDgtvimcXl4a20sLMv B70cGGBbRfFVO6UgL89ZbciQ3SeX0qm/LmaXTuIicMOnmvlkVQoxRVKTA 08wBwWApmzbR2Fm4LdVioh4ViTMuBrtgx2cHKBXDEns23ZaL7u10StulC YHSWxrdcov/677tJNIUhXSvv4hn/sfucuZWvUN6w6yrkFsJ9mjS/gcz4h krfWRQVfewTQ4IVkeDkTx6z8tf74pz2QGisQqAMgeUR3XDcY7HiNHu08Q 7+X6RZcB2GOO0DOTUE8flC8MKlV/ADQyBPsw/+E7RWi4k8tfbdtlP1yOn A==; X-IronPort-AV: E=McAfee;i="6500,9779,10555"; a="305051952" X-IronPort-AV: E=Sophos;i="5.96,230,1665471600"; d="scan'208";a="305051952" 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:04:53 -0800 X-IronPort-AV: E=McAfee;i="6500,9779,10555"; a="678074552" X-IronPort-AV: E=Sophos;i="5.96,230,1665471600"; d="scan'208";a="678074552" 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:04:51 -0800 From: Lingli Chen To: dts@dpdk.org Cc: zhiminx.huang@intel.com, Lingli Chen Subject: [dts][PATCH V2 0/5] use decorator to skip igb_uio cases Date: Fri, 9 Dec 2022 02:08:02 -0500 Message-Id: <20221209070807.1134-1-linglix.chen@intel.com> X-Mailer: git-send-email 2.17.1 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 1. external_memory/ip_pipeline/qinq_filter/veb_switch/vf_interrupt_pmd/vf_macfilter/vf_packet_rxtx 7 suits need use decorator to skip igb_uio cases. 2. generic_flow_api need to split pf action and vf action, pf action can replace by vfio-pci. Lingli Chen (5): test_plans/generic_flow_api: add pf action subcase tests/generic_flow_api: add pf action subcase conf/test_case_*: add pf action subcase framework/test_case: add skip_unsupported_host_driver decorator tests/TestSuite_*: skip igb_uio cases conf/test_case_checklist.json | 11 +- conf/test_case_supportlist.json | 5 +- framework/test_case.py | 22 + test_plans/generic_flow_api_test_plan.rst | 419 +++++--- tests/TestSuite_external_memory.py | 4 +- tests/TestSuite_generic_flow_api.py | 1167 ++++++++++++++++----- 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 +- 12 files changed, 1205 insertions(+), 444 deletions(-)