From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga17.intel.com (mga17.intel.com [192.55.52.151]) by dpdk.org (Postfix) with ESMTP id DAA3D1E2B for ; Tue, 26 Feb 2019 04:11:00 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by fmsmga107.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 25 Feb 2019 19:10:59 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.58,413,1544515200"; d="scan'208";a="147282512" Received: from fmsmsx104.amr.corp.intel.com ([10.18.124.202]) by fmsmga004.fm.intel.com with ESMTP; 25 Feb 2019 19:10:59 -0800 Received: from shsmsx102.ccr.corp.intel.com (10.239.4.154) by fmsmsx104.amr.corp.intel.com (10.18.124.202) with Microsoft SMTP Server (TLS) id 14.3.408.0; Mon, 25 Feb 2019 19:10:59 -0800 Received: from shsmsx101.ccr.corp.intel.com ([169.254.1.110]) by shsmsx102.ccr.corp.intel.com ([169.254.2.207]) with mapi id 14.03.0415.000; Tue, 26 Feb 2019 11:10:57 +0800 From: "Tu, Lijuan" To: "Yao, Lei A" , "dts@dpdk.org" CC: "Yao, Lei A" Thread-Topic: [dts] [PATCH V1]tests: correct the pcap file name Thread-Index: AQHUw3DI7YKu+X+TrkWz7d2ZKtcFyqXxetzw Date: Tue, 26 Feb 2019 03:10:56 +0000 Message-ID: <8CE3E05A3F976642AAB0F4675D0AD20E0BA271F0@SHSMSX101.ccr.corp.intel.com> References: <1550070841-44655-1-git-send-email-lei.a.yao@intel.com> In-Reply-To: <1550070841-44655-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: dlp-product: dlpe-windows dlp-version: 11.0.400.15 dlp-reaction: no-action x-ctpclassification: CTP_NT x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiYWQyMmViNDMtYTJmMS00YjJmLWIzYjEtOTQ3ZTNjNDhlM2Y1IiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX05UIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE3LjEwLjE4MDQuNDkiLCJUcnVzdGVkTGFiZWxIYXNoIjoiNW9OVk1IUmM1ZWt6eWpFMHltNHRMaGNnNkZVMElnMXYzQ2hzN2VtcWZWZUt2dGxXUTFTOGo0NWtUbkdYcWc1ZCJ9 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 V1]tests: correct the pcap file name 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: Tue, 26 Feb 2019 03:11:01 -0000 Applied, thanks > -----Original Message----- > From: dts [mailto:dts-bounces@dpdk.org] On Behalf Of Lei > Sent: Wednesday, February 13, 2019 11:14 PM > To: dts@dpdk.org > Cc: Yao, Lei A > Subject: [dts] [PATCH V1]tests: correct the pcap file name >=20 > From: Lei Yao >=20 > The pcap file test cases prepared doesn'at match the file IXia use > --- > tests/TestSuite_kni.py | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) >=20 > diff --git a/tests/TestSuite_kni.py b/tests/TestSuite_kni.py index > 04ed218..dddfb90 100644 > --- a/tests/TestSuite_kni.py > +++ b/tests/TestSuite_kni.py > @@ -1188,7 +1188,7 @@ class TestKni(TestCase): > self.tester.scapy_append( >=20 > 'flows.append(Ether(dst=3D"%s")/IP(src=3D"192.170.%d.2",dst=3D"192.170.%d= .2")/("X" > *%d))' % > (rx_mac, 100 + port, 100 + (port + 1) % ports_withou= t_kni, > payload_size)) > - tgen_input.append((tx_port, tx_port, "routePerf.pcap")) > + tgen_input.append((tx_port, tx_port, > + "routePerf_%d.pcap" % ports_without_kni)) >=20 > self.tester.scapy_append( > 'wrpcap("routePerf_%d.pcap",flows)' % ports_without_kni) > -- > 2.7.4