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 A3B8AA04E6; Wed, 18 Nov 2020 04:29:21 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 6E79F5937; Wed, 18 Nov 2020 04:29:20 +0100 (CET) Received: from mga12.intel.com (mga12.intel.com [192.55.52.136]) by dpdk.org (Postfix) with ESMTP id EDDF84C90 for ; Wed, 18 Nov 2020 04:29:18 +0100 (CET) IronPort-SDR: l6cnFChGeLdHCtD6WOS5guu+qiB0QPqOBA1bcvS//G7Q0QqznFRfWn6a3/8EB9y2bqwsnjYVyp LW1iFEYDb2cg== X-IronPort-AV: E=McAfee;i="6000,8403,9808"; a="150328487" X-IronPort-AV: E=Sophos;i="5.77,486,1596524400"; d="scan'208";a="150328487" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga006.fm.intel.com ([10.253.24.20]) by fmsmga106.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Nov 2020 19:29:17 -0800 IronPort-SDR: BBNqeLa+uNkqg0lTY+bLWGgkDVZxHyGRFFuluKvJGFbrCRMmOpKyShZJH6pQIodbudwU3cAivy C6lmLt6ZMaJw== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.77,486,1596524400"; d="scan'208";a="532472208" Received: from fmsmsx604.amr.corp.intel.com ([10.18.126.84]) by fmsmga006.fm.intel.com with ESMTP; 17 Nov 2020 19:29:17 -0800 Received: from shsmsx605.ccr.corp.intel.com (10.109.6.215) by fmsmsx604.amr.corp.intel.com (10.18.126.84) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.1713.5; Tue, 17 Nov 2020 19:29:16 -0800 Received: from shsmsx601.ccr.corp.intel.com (10.109.6.141) by SHSMSX605.ccr.corp.intel.com (10.109.6.215) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.1713.5; Wed, 18 Nov 2020 11:29:14 +0800 Received: from shsmsx601.ccr.corp.intel.com ([10.109.6.141]) by SHSMSX601.ccr.corp.intel.com ([10.109.6.141]) with mapi id 15.01.1713.004; Wed, 18 Nov 2020 11:29:14 +0800 From: "Tu, Lijuan" To: "Khangar, Churchill" , "dts@dpdk.org" CC: "Dumitrescu, Cristian" , "P, Venkata Suresh Kumar" , "Khangar, Churchill" , "Jangra, Yogesh" Thread-Topic: [dts] [PATCH v2 0/4] add pipeline suite Thread-Index: AQHWuZQboN7Nzl9Ls0GIRWI7ZvbcUqnNQrHg Date: Wed, 18 Nov 2020 03:29:14 +0000 Message-ID: <5c289aa6679442fea67ec45ac7ec983a@intel.com> References: <1605254605-31556-1-git-send-email-churchill.khangar@intel.com> In-Reply-To: <1605254605-31556-1-git-send-email-churchill.khangar@intel.com> Accept-Language: zh-CN, en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: dlp-reaction: no-action dlp-version: 11.5.1.3 dlp-product: dlpe-windows x-originating-ip: [10.239.127.36] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [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. >=20 > 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). >=20 > Patch details > 1. Patch1 adds the pipeline dependencies archive and compressed f= ile > 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 >=20 > 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 >=20 > 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 >=20 > -- > 1.8.3.1 Applied