From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga18.intel.com (mga18.intel.com [134.134.136.126]) by dpdk.org (Postfix) with ESMTP id E9DA4292D for ; Fri, 22 Feb 2019 13:39:29 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga008.fm.intel.com ([10.253.24.58]) by orsmga106.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 22 Feb 2019 04:39:29 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.58,399,1544515200"; d="scan'208";a="126409546" Received: from irsmsx103.ger.corp.intel.com ([163.33.3.157]) by fmsmga008.fm.intel.com with ESMTP; 22 Feb 2019 04:39:28 -0800 Received: from irsmsx105.ger.corp.intel.com ([169.254.7.72]) by IRSMSX103.ger.corp.intel.com ([169.254.3.199]) with mapi id 14.03.0415.000; Fri, 22 Feb 2019 12:39:27 +0000 From: "Ananyev, Konstantin" To: "Zhang, Roy Fan" , "dev@dpdk.org" CC: "akhil.goyal@nxp.com" Thread-Topic: [PATCH v2 2/4] ipsec-secgw: add test scripts for aes ctr Thread-Index: AQHUyGiKSAN0zvleKkaAthhch6Fg8aXrxjBQ Date: Fri, 22 Feb 2019 12:39:26 +0000 Message-ID: <2601191342CEEE43887BDE71AB977258012413C2A2@irsmsx105.ger.corp.intel.com> References: <20190218163254.56905-1-roy.fan.zhang@intel.com> <20190219153236.84537-1-roy.fan.zhang@intel.com> <20190219153236.84537-3-roy.fan.zhang@intel.com> In-Reply-To: <20190219153236.84537-3-roy.fan.zhang@intel.com> Accept-Language: en-IE, en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiMDdhYjAzYzYtZmFlZC00YTk5LWE4YTQtYTgyZjc5ZDY4MzMzIiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX05UIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE3LjEwLjE4MDQuNDkiLCJUcnVzdGVkTGFiZWxIYXNoIjoieTY3aWI0QlBcLzl6R2lodHJQRkRna3JuZ2NBc1czdE1DNzFwK2t0YkZ3WGw5ajRsTnVBdjNTVUZUT2JyYVRJaHEifQ== x-ctpclassification: CTP_NT dlp-product: dlpe-windows dlp-version: 11.0.400.15 dlp-reaction: no-action x-originating-ip: [163.33.239.181] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH v2 2/4] ipsec-secgw: add test scripts for aes ctr X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Feb 2019 12:39:30 -0000 > This patch adds the functional test scripts to ipsec-secgw > sample application for both transport and tunnel working > mode. >=20 > Updated a bit on common_defs to use "mktemp" instead of "tempfile" > as Fedora does not like the command. >=20 > Signed-off-by: Fan Zhang > --- > examples/ipsec-secgw/test/common_defs.sh | 4 +- > examples/ipsec-secgw/test/run_test.sh | 8 ++- > .../test/trs_aesctr_sha1_common_defs.sh | 69 ++++++++++++++++= +++++ > examples/ipsec-secgw/test/trs_aesctr_sha1_defs.sh | 67 ++++++++++++++++= +++++ > .../test/trs_aesctr_sha1_esn_atom_defs.sh | 5 ++ > .../ipsec-secgw/test/trs_aesctr_sha1_esn_defs.sh | 66 ++++++++++++++++= ++++ > .../ipsec-secgw/test/trs_aesctr_sha1_old_defs.sh | 5 ++ > .../test/tun_aesctr_sha1_common_defs.sh | 68 ++++++++++++++++= +++++ > examples/ipsec-secgw/test/tun_aesctr_sha1_defs.sh | 70 ++++++++++++++++= ++++++ > .../test/tun_aesctr_sha1_esn_atom_defs.sh | 5 ++ > .../ipsec-secgw/test/tun_aesctr_sha1_esn_defs.sh | 70 ++++++++++++++++= ++++++ > .../ipsec-secgw/test/tun_aesctr_sha1_old_defs.sh | 5 ++ > 12 files changed, 439 insertions(+), 3 deletions(-) > create mode 100644 examples/ipsec-secgw/test/trs_aesctr_sha1_common_defs= .sh > create mode 100644 examples/ipsec-secgw/test/trs_aesctr_sha1_defs.sh > create mode 100644 examples/ipsec-secgw/test/trs_aesctr_sha1_esn_atom_de= fs.sh > create mode 100644 examples/ipsec-secgw/test/trs_aesctr_sha1_esn_defs.sh > create mode 100644 examples/ipsec-secgw/test/trs_aesctr_sha1_old_defs.sh > create mode 100644 examples/ipsec-secgw/test/tun_aesctr_sha1_common_defs= .sh > create mode 100644 examples/ipsec-secgw/test/tun_aesctr_sha1_defs.sh > create mode 100644 examples/ipsec-secgw/test/tun_aesctr_sha1_esn_atom_de= fs.sh > create mode 100644 examples/ipsec-secgw/test/tun_aesctr_sha1_esn_defs.sh > create mode 100644 examples/ipsec-secgw/test/tun_aesctr_sha1_old_defs.sh >=20 Acked-by: Konstantin Ananyev > -- > 2.14.5