From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id DD7B8A0545; Fri, 13 Nov 2020 09:05:43 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id B0B4A56A3; Fri, 13 Nov 2020 09:05:42 +0100 (CET) Received: from mga12.intel.com (mga12.intel.com [192.55.52.136]) by dpdk.org (Postfix) with ESMTP id 6E43E4CA6 for ; Fri, 13 Nov 2020 09:05:40 +0100 (CET) IronPort-SDR: GI+sedJXmHmpq+B4+KypGpAcO34EPAr7bUX4oqSrDF7+6v0ZxnYdERMKY4oPzoucrdEtED/jl9 vCxFXQDU46kw== X-IronPort-AV: E=McAfee;i="6000,8403,9803"; a="149711297" X-IronPort-AV: E=Sophos;i="5.77,474,1596524400"; d="scan'208";a="149711297" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga003.jf.intel.com ([10.7.209.27]) by fmsmga106.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 13 Nov 2020 00:05:28 -0800 IronPort-SDR: cqmZKqT+GB47IHEurD7svedjp5GoCqxGnQvcCS3Jsq+bbauopWE8537RG3ZVX6tm42taBLZMUZ wClvvYhQuROQ== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.77,474,1596524400"; d="scan'208";a="323924074" Received: from unknown (HELO bdcdev09.localdomain) ([10.190.193.143]) by orsmga003.jf.intel.com with ESMTP; 13 Nov 2020 00:05:24 -0800 From: Churchill Khangar To: dts@dpdk.org Cc: cristian.dumitrescu@intel.com, venkata.suresh.kumar.p@intel.com, churchill.khangar@intel.com, yogesh.jangra@intel.com Date: Fri, 13 Nov 2020 03:03:21 -0500 Message-Id: <1605254605-31556-1-git-send-email-churchill.khangar@intel.com> X-Mailer: git-send-email 1.8.3.1 Subject: [dts] [PATCH v2 0/4] add pipeline suite X-BeenThere: dts@dpdk.org X-Mailman-Version: 2.1.15 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" This patch series adds a new test suite for pipeline application. Pipeline example is an application for improved Software Switch (SWX) pipeline type that supports dynamically-defined packet headers, meta-data, actions and pipelines. Actions and pipelines are defined through instructions. New pipeline test suites aims to verify the all supported instructions by using required input, spec and cli files which are part of dependences directory(dep/pipeline.tar.gz). Patch details 1. Patch1 adds the pipeline dependencies archive and compressed file pipeline.tar.gz 2. Patch2 adds the details of pipeline test plan details pipeline_test_plan.rst 3. Patch3 adds the pipeline new test suite implementation file TestSuite_pipeline.py 4. Patch4 adds new pipeline application configuration in app_name.cfg file Churchill Khangar (4): dep: add pipeline test suite dependencies test_plans: add pipeline test plan document tests: add pipeline test suite conf/app_name: add pipeline app name config conf/app_name.cfg | 2 + dep/pipeline.tar.gz | Bin 0 -> 119666 bytes test_plans/pipeline_test_plan.rst | 122 + tests/TestSuite_pipeline.py | 5833 +++++++++++++++++++++++++++++++++++++ 4 files changed, 5957 insertions(+) create mode 100644 dep/pipeline.tar.gz create mode 100644 test_plans/pipeline_test_plan.rst create mode 100644 tests/TestSuite_pipeline.py -- 1.8.3.1