From patchwork Tue Nov 8 15:06:33 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Yogesh Jangra X-Patchwork-Id: 119554 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 A3DD3A0093; Tue, 8 Nov 2022 16:16:23 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 9E48A40151; Tue, 8 Nov 2022 16:16:23 +0100 (CET) Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by mails.dpdk.org (Postfix) with ESMTP id A523D400D4 for ; Tue, 8 Nov 2022 16:16:21 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1667920581; x=1699456581; h=from:to:cc:subject:date:message-id:mime-version: content-transfer-encoding; bh=W3QPkiRNkzEt4boWqeUhZGcRPljoCYfvICDAaphp1SI=; b=N+2tO9+ntf6NPRYb13y9InMDzaconDJIASrP3EisjiIg7EvUe4WjyIlM beHmsLpIUfNe0oqhdmmN+VW8ObpB7x+YWM9uKSjXTwaQ3aZk4q/Kuit7U OnRErRm5te4cP4se/3zMVWxqqa8K0ceGPis3Ii4FGrBRdtm6YQ6ORnixY CxZ6iA+ZXNUN0vPj2Oo9kJKagiTLa6IpUVEvhXe17qB1tFxGRa9bgP4LB Zda5covSDmfqJHDSZDNbphz0yzNrFKAhrv4cLUlIcntWQk9ht8TKOapDr YosAMlONhOKLgUWVmxOUILx2HI055pnWzyl+eMFdZusRZ04q/64QQAQPa w==; X-IronPort-AV: E=McAfee;i="6500,9779,10525"; a="310715209" X-IronPort-AV: E=Sophos;i="5.96,148,1665471600"; d="scan'208";a="310715209" Received: from fmsmga007.fm.intel.com ([10.253.24.52]) by fmsmga103.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 08 Nov 2022 07:06:43 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6500,9779,10525"; a="638816550" X-IronPort-AV: E=Sophos;i="5.96,148,1665471600"; d="scan'208";a="638816550" Received: from ena3-s2600wft.iind.intel.com ([10.235.221.73]) by fmsmga007.fm.intel.com with ESMTP; 08 Nov 2022 07:06:42 -0800 From: Yogesh Jangra To: dts@dpdk.org Cc: cristian.dumitrescu@intel.com, kamalakannan.r@intel.com, harshad.suresh.narayane@intel.com Subject: [PATCH 0/3] update testsuites that uses softnic driver Date: Tue, 8 Nov 2022 20:36:33 +0530 Message-Id: <20221108150636.2459852-1-yogesh.jangra@intel.com> X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 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 DPDK 22.11 release has updated the Soft NIC driver. With this release softnic is using rte_swx_pipeline_xxx library. The CLI that support flow, metering and policing has been removed. So this series removed the flow_classify_softnic and metering_and_policing test suites. This patch series also update softnic test suite. The testsuite uses the latest configuration files. Yogesh Jangra (3): test/metering_and_policing: removed the test suite as per dpdk changes test/flow_classify_softnic: removed the test suite as per dpdk changes test/softnic: updated softnic test suite as per dpdk 22.11 changes dep/flow_classify_softnic.tar.gz | Bin 1610 -> 0 bytes dep/meter_and_policy_config.tar.gz | Bin 1182 -> 0 bytes dep/softnic/rx_tx/pcap_files/in.txt | 12 + dep/softnic/rx_tx/pcap_files/out.txt | 12 + dep/softnic/rx_tx/readme.txt | 8 + dep/softnic/rx_tx/rx_tx.cli | 21 + dep/softnic/rx_tx/rx_tx.spec | 19 + dep/softnic/rx_tx/rx_tx_1.io | 30 + dep/softnic/rx_tx/rx_tx_2.io | 30 + .../flow_classify_softnic_test_plan.rst | 1261 ------- test_plans/index.rst | 2 - .../metering_and_policing_test_plan.rst | 914 ----- test_plans/softnic_test_plan.rst | 137 +- tests/TestSuite_flow_classify_softnic.py | 3003 ----------------- tests/TestSuite_metering_and_policing.py | 1296 ------- tests/TestSuite_softnic.py | 414 +-- 16 files changed, 416 insertions(+), 6743 deletions(-) delete mode 100644 dep/flow_classify_softnic.tar.gz delete mode 100644 dep/meter_and_policy_config.tar.gz create mode 100644 dep/softnic/rx_tx/pcap_files/in.txt create mode 100644 dep/softnic/rx_tx/pcap_files/out.txt create mode 100644 dep/softnic/rx_tx/readme.txt create mode 100644 dep/softnic/rx_tx/rx_tx.cli create mode 100644 dep/softnic/rx_tx/rx_tx.spec create mode 100644 dep/softnic/rx_tx/rx_tx_1.io create mode 100644 dep/softnic/rx_tx/rx_tx_2.io delete mode 100644 test_plans/flow_classify_softnic_test_plan.rst delete mode 100644 test_plans/metering_and_policing_test_plan.rst delete mode 100644 tests/TestSuite_flow_classify_softnic.py delete mode 100644 tests/TestSuite_metering_and_policing.py