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 54697A0352; Thu, 16 Jan 2020 08:15:29 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 3B1341C0BF; Thu, 16 Jan 2020 08:15:29 +0100 (CET) Received: from mga18.intel.com (mga18.intel.com [134.134.136.126]) by dpdk.org (Postfix) with ESMTP id 6E6541C06B for ; Thu, 16 Jan 2020 08:15:28 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga005.jf.intel.com ([10.7.209.41]) by orsmga106.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 15 Jan 2020 23:15:27 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.70,325,1574150400"; d="scan'208";a="398178874" Received: from fmsmsx103.amr.corp.intel.com ([10.18.124.201]) by orsmga005.jf.intel.com with ESMTP; 15 Jan 2020 23:15:26 -0800 Received: from fmsmsx156.amr.corp.intel.com (10.18.116.74) by FMSMSX103.amr.corp.intel.com (10.18.124.201) with Microsoft SMTP Server (TLS) id 14.3.439.0; Wed, 15 Jan 2020 23:15:26 -0800 Received: from shsmsx104.ccr.corp.intel.com (10.239.4.70) by fmsmsx156.amr.corp.intel.com (10.18.116.74) with Microsoft SMTP Server (TLS) id 14.3.439.0; Wed, 15 Jan 2020 23:15:25 -0800 Received: from shsmsx101.ccr.corp.intel.com ([169.254.1.30]) by SHSMSX104.ccr.corp.intel.com ([169.254.5.197]) with mapi id 14.03.0439.000; Thu, 16 Jan 2020 15:15:24 +0800 From: "Tu, Lijuan" To: "Mo, YufengX" , "dts@dpdk.org" Thread-Topic: [dts][PATCH V3 0/13] l3fwd: refactor script Thread-Index: AQHVzC1qCK4j7DS9hEWP+WvOIS7Bv6fs4L8g Date: Thu, 16 Jan 2020 07:15:23 +0000 Message-ID: <8CE3E05A3F976642AAB0F4675D0AD20E0BBAB6FC@SHSMSX101.ccr.corp.intel.com> References: <20200116052820.21902-1-yufengx.mo@intel.com> In-Reply-To: <20200116052820.21902-1-yufengx.mo@intel.com> Accept-Language: zh-CN, en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: dlp-product: dlpe-windows dlp-version: 11.2.0.6 dlp-reaction: no-action x-originating-ip: [10.239.127.40] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dts] [PATCH V3 0/13] l3fwd: refactor script 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" Hi Feng, Applied the patch set failed because code base changed. Could you please re= work it ? thanks > -----Original Message----- > From: Mo, YufengX > Sent: Thursday, January 16, 2020 1:28 PM > To: dts@dpdk.org; Tu, Lijuan > Cc: Mo, YufengX > Subject: [dts][PATCH V3 0/13] l3fwd: refactor script >=20 > refactor script. >=20 >=20 > v3: > - support one port testing topo for ixia. > - add test case name in cfg file. > - rename module l3fwd.py to l3fwd_base.py. > - rename common_l3fwd.cfg to l3fwd_base.cfg. > - rename verify method names. > - rename test scripts suite name. > - >=20 > v2: > - update script based on version 2 l3fwd test plan. > - separate script into five suites for different testing scenario. > - separate flows configuration in common_l3fwd.cfg. > - add test result data check process as new test plan requirement. > - save test results in json format file. > - >=20 > v1: > - optimize packet creation time consumption. > - separate LPM/EM mode packet creation process. > - use new pktgen coding style to take the place of migration coding styl= e. > - unify rfc2544/throughput result data display table methods. > - move test content configuration into cfg file, including flows/EM tabl= e/LPM > table/framesizes/port configs. >=20 > yufengmx (13): > conf/l3fwd: l3fwd suite testing configuration > conf/l3fwd_base: l3fwd base class flows configuration > conf/l3fwd_em: suite testing configuration > conf/l3fwd_lpm_ipv4_rfc2544: suite testing configuration > conf/l3fwd_lpm_ipv4: l3fwd_lpm_ipv4 testing configuration > conf/l3fwd_lpm_ipv6: suite testing configuration > tests/l3fwd: upload automation script > tests/l3fwd_em: upload automation script > tests/l3fwd_lpm_ipv4_rfc2544: upload automation script > tests/l3fwd_lpm_ipv4: upload automation script > tests/l3fwd_lpm_ipv6: upload automation script > tests/l3fwd_base: upload automation script > framework/test_case: add wirespeed columbiaville nic >=20 > conf/l3fwd.cfg | 400 ++++++++++++ > conf/l3fwd_base.cfg | 103 +++ > conf/l3fwd_em.cfg | 147 +++++ > conf/l3fwd_lpm_ipv4.cfg | 105 +++ > conf/l3fwd_lpm_ipv4_rfc2544.cfg | 105 +++ > conf/l3fwd_lpm_ipv6.cfg | 105 +++ > framework/test_case.py | 4 + > tests/TestSuite_l3fwd.py | 370 ++--------- > tests/TestSuite_l3fwd_em.py | 258 +------- > tests/TestSuite_l3fwd_lpm_ipv4.py | 86 +++ > tests/TestSuite_l3fwd_lpm_ipv4_rfc2544.py | 86 +++ > tests/TestSuite_l3fwd_lpm_ipv6.py | 85 +++ > tests/l3fwd_base.py | 744 ++++++++++++++++++++++ > 13 files changed, 2044 insertions(+), 554 deletions(-) create mode 1006= 44 > conf/l3fwd.cfg create mode 100644 conf/l3fwd_base.cfg create mode > 100644 conf/l3fwd_em.cfg create mode 100644 conf/l3fwd_lpm_ipv4.cfg > create mode 100644 conf/l3fwd_lpm_ipv4_rfc2544.cfg create mode 100644 > conf/l3fwd_lpm_ipv6.cfg create mode 100644 > tests/TestSuite_l3fwd_lpm_ipv4.py create mode 100644 > tests/TestSuite_l3fwd_lpm_ipv4_rfc2544.py > create mode 100644 tests/TestSuite_l3fwd_lpm_ipv6.py create mode > 100644 tests/l3fwd_base.py >=20 > -- > 2.21.0