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 1772FA04A3; Mon, 4 Nov 2019 04:09:17 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id C72A15B3C; Mon, 4 Nov 2019 04:09:16 +0100 (CET) Received: from mga12.intel.com (mga12.intel.com [192.55.52.136]) by dpdk.org (Postfix) with ESMTP id 5AFB45B32 for ; Mon, 4 Nov 2019 04:09:14 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by fmsmga106.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 03 Nov 2019 19:09:13 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.68,265,1569308400"; d="scan'208";a="212222105" Received: from fmsmsx106.amr.corp.intel.com ([10.18.124.204]) by fmsmga001.fm.intel.com with ESMTP; 03 Nov 2019 19:09:13 -0800 Received: from fmsmsx118.amr.corp.intel.com (10.18.116.18) by FMSMSX106.amr.corp.intel.com (10.18.124.204) with Microsoft SMTP Server (TLS) id 14.3.439.0; Sun, 3 Nov 2019 19:09:13 -0800 Received: from shsmsx151.ccr.corp.intel.com (10.239.6.50) by fmsmsx118.amr.corp.intel.com (10.18.116.18) with Microsoft SMTP Server (TLS) id 14.3.439.0; Sun, 3 Nov 2019 19:09:12 -0800 Received: from shsmsx101.ccr.corp.intel.com ([169.254.1.213]) by SHSMSX151.ccr.corp.intel.com ([169.254.3.149]) with mapi id 14.03.0439.000; Mon, 4 Nov 2019 11:09:11 +0800 From: "Tu, Lijuan" To: "Luo, Michael" , "dts@dpdk.org" Thread-Topic: [dts] [PATCH] tests/vf_jumboframe: correct a typo Thread-Index: AQHVkrB0s4W/HDgOhE6khX6gyOeJaKd6VQpA Date: Mon, 4 Nov 2019 03:09:11 +0000 Message-ID: <8CE3E05A3F976642AAB0F4675D0AD20E0BB5D45F@SHSMSX101.ccr.corp.intel.com> References: <1572831110-69770-1-git-send-email-michael.luo@intel.com> In-Reply-To: <1572831110-69770-1-git-send-email-michael.luo@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-ctpclassification: CTP_NT x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiZjhmZTQzYWItNzIzNi00MmExLWIxMjgtMWVjM2RhZjVmZjE5IiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX05UIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE3LjEwLjE4MDQuNDkiLCJUcnVzdGVkTGFiZWxIYXNoIjoid3NOek1nS2s3a3BqTEIybnpnQWt0UUdwbFhibHZqMXIyb1lZS3c0MnhkdW5SSG0yQnJMcEY3dVhGXC8rejBHZUsifQ== 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_jumboframe: correct a typo 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" Applied, thanks > -----Original Message----- > From: dts [mailto:dts-bounces@dpdk.org] On Behalf Of > michael.luo@intel.com > Sent: Monday, November 4, 2019 9:32 AM > To: dts@dpdk.org > Subject: [dts] [PATCH] tests/vf_jumboframe: correct a typo >=20 > From: Gaoliang Luo >=20 > Signed-off-by: Gaoliang Luo > --- > tests/TestSuite_vf_jumboframe.py | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) >=20 > diff --git a/tests/TestSuite_vf_jumboframe.py > b/tests/TestSuite_vf_jumboframe.py > index dd728d9..f17e30e 100644 > --- a/tests/TestSuite_vf_jumboframe.py > +++ b/tests/TestSuite_vf_jumboframe.py > @@ -193,7 +193,7 @@ class TestVfJumboFrame(TestCase): > if self.kdriver =3D=3D "ixgbe": > self.verify((rx_bytes + 4) =3D=3D pktsize, "Rx packet si= ze should be > packet size - 4") > else: > - self.verify(rx_bytes =3D=3D pktsize, "Tx packet size sho= uld be equal to > packet size") > + self.verify(rx_bytes =3D=3D pktsize, "Rx packet size sho= uld be equal to > packet size") >=20 > if self.kdriver =3D=3D "igb": > self.verify(tx_bytes =3D=3D pktsize, "Tx packet size sho= uld be packet > size") > -- > 2.7.4