From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by dpdk.org (Postfix) with ESMTP id 643AF10CCE for ; Thu, 22 Dec 2016 02:12:26 +0100 (CET) Received: from fmsmga005.fm.intel.com ([10.253.24.32]) by orsmga103.jf.intel.com with ESMTP; 21 Dec 2016 17:12:25 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.33,386,1477983600"; d="scan'208";a="45594313" Received: from fmsmsx105.amr.corp.intel.com ([10.18.124.203]) by fmsmga005.fm.intel.com with ESMTP; 21 Dec 2016 17:12:25 -0800 Received: from fmsmsx114.amr.corp.intel.com (10.18.116.8) by FMSMSX105.amr.corp.intel.com (10.18.124.203) with Microsoft SMTP Server (TLS) id 14.3.248.2; Wed, 21 Dec 2016 17:12:24 -0800 Received: from shsmsx101.ccr.corp.intel.com (10.239.4.153) by FMSMSX114.amr.corp.intel.com (10.18.116.8) with Microsoft SMTP Server (TLS) id 14.3.248.2; Wed, 21 Dec 2016 17:12:24 -0800 Received: from shsmsx103.ccr.corp.intel.com ([169.254.4.20]) by SHSMSX101.ccr.corp.intel.com ([169.254.1.177]) with mapi id 14.03.0248.002; Thu, 22 Dec 2016 09:12:22 +0800 From: "Liu, Yong" To: "Yao, Lei A" , "dts@dpdk.org" CC: "Yao, Lei A" Thread-Topic: [dts] [PATCH V3] test: add vhost/virtio pvp performance test Thread-Index: AQHSW+/lQo8fjrgZeEqhVb8N7Z+gHKETKFxA Date: Thu, 22 Dec 2016 01:12:21 +0000 Message-ID: <86228AFD5BCD8E4EBFD2B90117B5E81E62D2D521@SHSMSX103.ccr.corp.intel.com> References: <1482368913-9697-1-git-send-email-lei.a.yao@intel.com> In-Reply-To: <1482368913-9697-1-git-send-email-lei.a.yao@intel.com> Accept-Language: zh-CN, en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiYTQ5N2RmYjktNzNhMi00YWYzLWFjNTgtZjViM2YxYjAwZDM2IiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX0lDIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE1LjkuNi42IiwiVHJ1c3RlZExhYmVsSGFzaCI6IlRCS0ZQTHd2elNrVVhUcjRGUjZ4b1wvd2dSTUxxMXphUDhHSmNiRTg5MG00PSJ9 x-ctpclassification: CTP_IC 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] test: add vhost/virtio pvp performance test 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: , X-List-Received-Date: Thu, 22 Dec 2016 01:12:26 -0000 Lei, still one comment. > -----Original Message----- > From: dts [mailto:dts-bounces@dpdk.org] On Behalf Of lei,yao > Sent: Thursday, December 22, 2016 9:09 AM > To: dts@dpdk.org > Cc: Yao, Lei A > Subject: [dts] [PATCH V3] test: add vhost/virtio pvp performance test >=20 > From: lei yao >=20 > The test case include 2 part: > 1. virtio 0.95 performance test > virtio0.95 is the default version for qemu. Vector, normal, mergeable pat= h > will be tested on this version > 2. Test vector performance on virtio 1.0. >=20 > Signed-off-by: lei yao > --- > tests/TestSuite_vhost_qemu_pvp_performance.py | 307 > ++++++++++++++++++++++++++ > 1 file changed, 307 insertions(+) > create mode 100644 tests/TestSuite_vhost_qemu_pvp_performance.py >=20 > diff --git a/tests/TestSuite_vhost_qemu_pvp_performance.py > b/tests/TestSuite_vhost_qemu_pvp_performance.py > new file mode 100644 > index 0000000..6b23ba5 > --- /dev/null > +++ b/tests/TestSuite_vhost_qemu_pvp_performance.py > + > + self.frame_sizes =3D [64, 128, 256, 512, 1024, 1500] > + self.vm_testpmd_vector =3D "./x86_64-native-linuxapp- > gcc/app/testpmd -c 0x3 -n 3" \ > + + " -- -i --txqflags=3D0xf01 --disable-= hw- > vlan-filter" > + self.vm_testpmd_normal =3D "./x86_64-native-linuxapp- > gcc/app/testpmd -c 0x3 -n 3" \ > + + " -- -i --txqflags=3D0xf00 --disable-= hw- > vlan-filter" Please use self.target replace of x86_64-native-linuxapp-gcc. We should use= configured target for dpdk application path.