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 66112A2E1B for ; Wed, 4 Sep 2019 08:00:16 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 5C1F11ECCA; Wed, 4 Sep 2019 08:00:16 +0200 (CEST) Received: from mga12.intel.com (mga12.intel.com [192.55.52.136]) by dpdk.org (Postfix) with ESMTP id D05FC1ECCA for ; Wed, 4 Sep 2019 08:00:14 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by fmsmga106.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 03 Sep 2019 23:00:12 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.64,465,1559545200"; d="scan'208";a="207352425" Received: from dpdk-meijuan2.sh.intel.com ([10.67.119.83]) by fmsmga004.fm.intel.com with ESMTP; 03 Sep 2019 23:00:11 -0700 From: hanyingya To: dts@dpdk.org Cc: hanyingya Date: Wed, 4 Sep 2019 14:00:12 +0000 Message-Id: <20190904140012.114539-1-yingyax.han@intel.com> X-Mailer: git-send-email 2.17.1 Subject: [dts] [PATCH V1]tests/l3fwd: correct spelling errors 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" Signed-off-by: hanyingya --- tests/TestSuite_l3fwd.py | 6 +++--- tests/TestSuite_vf_l3fwd.py | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/TestSuite_l3fwd.py b/tests/TestSuite_l3fwd.py index afac1c8..359ecfd 100644 --- a/tests/TestSuite_l3fwd.py +++ b/tests/TestSuite_l3fwd.py @@ -278,7 +278,7 @@ class TestL3fwd(TestCase): cnt += 1 return pcaps - def prepare_steam(self, pcaps): + def prepare_stream(self, pcaps): """ create streams for ports, one port one stream """ @@ -322,7 +322,7 @@ class TestL3fwd(TestCase): # crete traffic flow pcaps = self.create_pcap_file(frame_size, l3_proto) # send the traffic and Measure test - tgenInput = self.prepare_steam(pcaps) + tgenInput = self.prepare_stream(pcaps) vm_config = self.set_fields() # clear streams before add new streams @@ -376,7 +376,7 @@ class TestL3fwd(TestCase): # crete traffic flow pcaps = self.create_pcap_file(frame_size, l3_proto) # send the traffic and Measure test - tgenInput = self.prepare_steam(pcaps) + tgenInput = self.prepare_stream(pcaps) vm_config = self.set_fields() # clear streams before add new streams diff --git a/tests/TestSuite_vf_l3fwd.py b/tests/TestSuite_vf_l3fwd.py index cf16dec..78b24c9 100644 --- a/tests/TestSuite_vf_l3fwd.py +++ b/tests/TestSuite_vf_l3fwd.py @@ -200,7 +200,7 @@ class TestVfL3fwd(TestCase): cnt += 1 return pcaps - def prepare_steam(self, pcaps): + def prepare_stream(self, pcaps): """ create streams for ports,one port one stream """ @@ -235,7 +235,7 @@ class TestVfL3fwd(TestCase): cmdline = cmdline + " --max-pkt-len %d" % frame_size l3fwd_session.send_expect(cmdline, "L3FWD:", 120) # send the traffic and Measure test - tgenInput = self.prepare_steam(pcaps) + tgenInput = self.prepare_stream(pcaps) vm_config = self.set_fields() # clear streams before add new streams -- 2.17.1