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 9DF0FA00E6 for ; Mon, 5 Aug 2019 07:50:01 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 957761BE5E; Mon, 5 Aug 2019 07:50:01 +0200 (CEST) Received: from mga06.intel.com (mga06.intel.com [134.134.136.31]) by dpdk.org (Postfix) with ESMTP id A90D51BE45 for ; Mon, 5 Aug 2019 07:49:59 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga005.fm.intel.com ([10.253.24.32]) by orsmga104.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 04 Aug 2019 22:49:59 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.64,348,1559545200"; d="scan'208";a="372969539" Received: from dpdk-moyufen01.sh.intel.com ([10.67.111.77]) by fmsmga005.fm.intel.com with ESMTP; 04 Aug 2019 22:49:58 -0700 From: yufengmx To: dts@dpdk.org Cc: yufengmx Date: Mon, 5 Aug 2019 13:50:44 +0800 Message-Id: <1564984244-151448-11-git-send-email-yufengx.mo@intel.com> X-Mailer: git-send-email 1.9.3 In-Reply-To: <1564984244-151448-1-git-send-email-yufengx.mo@intel.com> References: <1564984244-151448-1-git-send-email-yufengx.mo@intel.com> Subject: [dts] [PATCH V1 0/10] [next]tests/nic_single_core_perf: update pktgen input 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" parameter *. update suite nic_single_core_perf with new pktgen measure_throughput input parameter definition. *. fix typo. Signed-off-by: yufengmx --- tests/TestSuite_nic_single_core_perf.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/TestSuite_nic_single_core_perf.py b/tests/TestSuite_nic_single_core_perf.py index 5b815f4..ca09c72 100644 --- a/tests/TestSuite_nic_single_core_perf.py +++ b/tests/TestSuite_nic_single_core_perf.py @@ -101,7 +101,7 @@ class TestNicSingleCorePerf(TestCase): self.expected_throughput = self.get_suite_cfg()[ 'expected_throughput'][self.nic] - # initilize throughput attribution + # initialize throughput attribution # {'$framesize':{"$nb_desc": 'throughput'} self.throughput = {} @@ -182,7 +182,7 @@ class TestNicSingleCorePerf(TestCase): # measure throughput stream_ids = self.prepare_stream(frame_size) - traffic_opt = {'delay': self.test_duration} + traffic_opt = {'duration': self.test_duration} _, packets_received = self.tester.pktgen.measure_throughput( stream_ids, traffic_opt) throughput = packets_received / 1000000.0 @@ -193,7 +193,7 @@ class TestNicSingleCorePerf(TestCase): self.verify(throughput, "No traffic detected, please check your configuration") - self.logger.info("Trouthput of " + + self.logger.info("Throughput of " + "framesize: {}, rxd/txd: {} is :{} Mpps".format( frame_size, nb_desc, throughput)) -- 1.9.3