From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by dpdk.space (Postfix) with ESMTP id B165EA0096 for ; Wed, 8 May 2019 10:00:44 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 634C634F0; Wed, 8 May 2019 10:00:44 +0200 (CEST) Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by dpdk.org (Postfix) with ESMTP id 2823A2C2B for ; Wed, 8 May 2019 10:00:42 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by fmsmga101.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 08 May 2019 01:00:42 -0700 X-ExtLoop1: 1 Received: from fmsmsx103.amr.corp.intel.com ([10.18.124.201]) by FMSMGA003.fm.intel.com with ESMTP; 08 May 2019 01:00:42 -0700 Received: from fmsmsx155.amr.corp.intel.com (10.18.116.71) by FMSMSX103.amr.corp.intel.com (10.18.124.201) with Microsoft SMTP Server (TLS) id 14.3.408.0; Wed, 8 May 2019 01:00:42 -0700 Received: from shsmsx153.ccr.corp.intel.com (10.239.6.53) by FMSMSX155.amr.corp.intel.com (10.18.116.71) with Microsoft SMTP Server (TLS) id 14.3.408.0; Wed, 8 May 2019 01:00:41 -0700 Received: from shsmsx103.ccr.corp.intel.com ([169.254.4.70]) by SHSMSX153.ccr.corp.intel.com ([169.254.12.150]) with mapi id 14.03.0415.000; Wed, 8 May 2019 16:00:39 +0800 From: "Li, WenjieX A" To: "Lin, Xueqin" , "dts@dpdk.org" CC: "Lin, Xueqin" Thread-Topic: [dts] [PATCH] tests/vf_daemon: add show and clear statistics case Thread-Index: AQHU/m56RptMF60S2Uq4UZBOzsObXaZg6xew Date: Wed, 8 May 2019 08:00:39 +0000 Message-ID: <8688172CD5C0B74590FAE19D9579F94B536E2466@SHSMSX103.ccr.corp.intel.com> References: <1556508696-79429-1-git-send-email-xueqin.lin@intel.com> In-Reply-To: <1556508696-79429-1-git-send-email-xueqin.lin@intel.com> Accept-Language: zh-CN, en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: 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] tests/vf_daemon: add show and clear statistics case 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" Reviewed-by: Li, WenjieX A > -----Original Message----- > From: dts [mailto:dts-bounces@dpdk.org] On Behalf Of Xueqin Lin > Sent: Monday, April 29, 2019 11:32 AM > To: dts@dpdk.org > Cc: Lin, Xueqin > Subject: [dts] [PATCH] tests/vf_daemon: add show and clear statistics cas= e >=20 > Signed-off-by: Xueqin Lin >=20 > --- > tests/TestSuite_vf_daemon.py | 34 ++++++++++++++++++++++++++++++++++ > 1 file changed, 34 insertions(+) >=20 > diff --git a/tests/TestSuite_vf_daemon.py b/tests/TestSuite_vf_daemon.py > index 0dd797b..41955c8 100644 > --- a/tests/TestSuite_vf_daemon.py > +++ b/tests/TestSuite_vf_daemon.py > @@ -696,6 +696,40 @@ class TestVfDaemon(TestCase): > self.vm0_testpmd.execute_cmd('vlan set strip off 0') > self.vm0_testpmd.execute_cmd('vlan set filter off 0') >=20 > + def test_stats_show_clear(self): > + """ > + Show and clear statistics for a VF from PF > + """ > + self.check_vf_link_status() > + self.vf0_mac =3D self.vm0_testpmd.get_port_mac(0) > + out =3D self.dut_testpmd.execute_cmd('show vf stats 0 0') > + self.verify("RX-packets: 0" in out and "TX-packets: 0" in out, > + "Fail to show VF RX and TX stats from PF") > + out =3D self.vm0_testpmd.execute_cmd('show port stats 0') > + self.verify("RX-packets: 0" in out and "TX-packets: 0" in out, > + "Fail to show VF RX and TX stats") > + > + self.vm0_testpmd.execute_cmd('set fwd mac') > + self.vm0_testpmd.execute_cmd('set verbose 1') > + self.vm0_testpmd.execute_cmd('start') > + > + self.send_packet(self.vf0_mac, 0, 64 , 10) > + > + out =3D self.dut_testpmd.execute_cmd('show vf stats 0 0') > + self.verify("RX-packets: 10" in out and "TX-packets: 10" in out, > + "Wrong to show VF RX and TX packets from PF") > + out =3D self.vm0_testpmd.execute_cmd('show port stats 0') > + self.verify("RX-packets: 10" in out and "TX-packets: 10" in out, > + "Wrong to show VF RX and TX stats") > + > + self.dut_testpmd.execute_cmd('clear vf stats 0 0') > + out =3D self.dut_testpmd.execute_cmd('show vf stats 0 0') > + self.verify("RX-packets: 0" in out and "TX-packets: 0" in out, > + "Fail to clear VF RX and TX stats from PF") > + out =3D self.vm0_testpmd.execute_cmd('show port stats 0') > + self.verify("RX-packets: 0" in out and "TX-packets: 0" in out, > + "Wrong to show VF RX and TX stats after clear") > + >=20 > def tear_down(self): > self.vm0_testpmd.quit() > -- > 2.5.5