From patchwork Thu Mar 25 08:54:36 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Yufen.Mo" X-Patchwork-Id: 89833 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 E7BB4A0A02; Thu, 25 Mar 2021 10:01:55 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id AD6C9140D0D; Thu, 25 Mar 2021 10:01:55 +0100 (CET) Received: from mga12.intel.com (mga12.intel.com [192.55.52.136]) by mails.dpdk.org (Postfix) with ESMTP id F1D1840147 for ; Thu, 25 Mar 2021 10:01:53 +0100 (CET) IronPort-SDR: HUOoE4/F7P+QANr+S1BaMIEqQoxnGQNntzRJiv+SnpABIc4NzsZZXq7ptCeI7fy41ytI1Rmnvq kjqOCvnlr/4A== X-IronPort-AV: E=McAfee;i="6000,8403,9933"; a="170238284" X-IronPort-AV: E=Sophos;i="5.81,277,1610438400"; d="scan'208";a="170238284" Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by fmsmga106.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 25 Mar 2021 02:01:52 -0700 IronPort-SDR: GNWcKtEZ3tiQGLnyawnFWiw1WWsgXE2A4Yj2t1I6qchSwLdJNfazwX8qUfaMBA12rdwiFv0HkV lBdbBdG0cO/g== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.81,277,1610438400"; d="scan'208";a="442680051" Received: from dpdk-moyufen06.sh.intel.com ([10.67.116.208]) by fmsmga002.fm.intel.com with ESMTP; 25 Mar 2021 02:01:51 -0700 From: yufengmx To: dts@dpdk.org, lijuan.tu@intel.com Cc: yufengmx Date: Thu, 25 Mar 2021 16:54:36 +0800 Message-Id: <20210325085449.18195-1-yufengx.mo@intel.com> X-Mailer: git-send-email 2.21.0 MIME-Version: 1.0 Subject: [dts] [PATCH V3 00/13] vf_l3fwd_kernelpf: add more test scenario 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 Sender: "dts" v3: - fix checkpatch error. v2: - add stage 2 demand. v1: - add more test scenario. yufengmx (13): conf/vf_l3fwd_base: add more flows tests/perf_test_base: extend vf l3fwd content conf/vf_l3fwd_em_kernelpf: configuration tests/vf_l3fwd_em_kernelpf: script conf/vf_l3fwd_kernelpf: configuration tests/vf_l3fwd_kernelpf: add more test scenario conf/vf_l3fwd_lpm_ipv4_kernelpf: configuration tests/vf_l3fwd_lpm_ipv4_kernelpf: script conf/vf_l3fwd_lpm_ipv4_rfc2544_kernelpf: configuration tests/vf_l3fwd_lpm_ipv4_rfc2544_kernelpf: script conf/vf_l3fwd_lpm_ipv6_kernelpf: configuration tests/vf_l3fwd_lpm_ipv6_kernelpf: script tests/perf_test_base: script conf/vf_l3fwd_base.cfg | 93 +++++- conf/vf_l3fwd_em_kernelpf.cfg | 101 ++++++ conf/vf_l3fwd_kernelpf.cfg | 303 +++++++++++++++++- conf/vf_l3fwd_lpm_ipv4_kernelpf.cfg | 59 ++++ conf/vf_l3fwd_lpm_ipv4_rfc2544_kernelpf.cfg | 59 ++++ conf/vf_l3fwd_lpm_ipv6_kernelpf.cfg | 59 ++++ tests/TestSuite_vf_l3fwd_em_kernelpf.py | 89 +++++ tests/TestSuite_vf_l3fwd_kernelpf.py | 40 ++- tests/TestSuite_vf_l3fwd_lpm_ipv4_kernelpf.py | 85 +++++ ...uite_vf_l3fwd_lpm_ipv4_rfc2544_kernelpf.py | 85 +++++ tests/TestSuite_vf_l3fwd_lpm_ipv6_kernelpf.py | 85 +++++ tests/perf_test_base.py | 122 ++++++- 12 files changed, 1151 insertions(+), 29 deletions(-) create mode 100644 conf/vf_l3fwd_em_kernelpf.cfg create mode 100644 conf/vf_l3fwd_lpm_ipv4_kernelpf.cfg create mode 100644 conf/vf_l3fwd_lpm_ipv4_rfc2544_kernelpf.cfg create mode 100644 conf/vf_l3fwd_lpm_ipv6_kernelpf.cfg create mode 100644 tests/TestSuite_vf_l3fwd_em_kernelpf.py create mode 100644 tests/TestSuite_vf_l3fwd_lpm_ipv4_kernelpf.py create mode 100644 tests/TestSuite_vf_l3fwd_lpm_ipv4_rfc2544_kernelpf.py create mode 100644 tests/TestSuite_vf_l3fwd_lpm_ipv6_kernelpf.py