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 C5C4DA00E6 for ; Tue, 6 Aug 2019 09:15:48 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id B22E61B99B; Tue, 6 Aug 2019 09:15:48 +0200 (CEST) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by dpdk.org (Postfix) with ESMTP id 95AFF1B95C for ; Tue, 6 Aug 2019 09:15:46 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga007.jf.intel.com ([10.7.209.58]) by fmsmga105.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 06 Aug 2019 00:15:45 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.64,352,1559545200"; d="scan'208";a="164898120" Received: from dpdk-moyufen01.sh.intel.com ([10.67.111.77]) by orsmga007.jf.intel.com with ESMTP; 06 Aug 2019 00:15:44 -0700 From: yufengmx To: dts@dpdk.org Cc: yufengmx Date: Tue, 6 Aug 2019 15:16:37 +0800 Message-Id: <1565075798-3882-2-git-send-email-yufengx.mo@intel.com> X-Mailer: git-send-email 1.9.3 In-Reply-To: <1565075798-3882-1-git-send-email-yufengx.mo@intel.com> References: <1565075798-3882-1-git-send-email-yufengx.mo@intel.com> Subject: [dts] [PATCH V1 1/2] framework/pktgen_base: fix measure_throughput missed option 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" input add missing _start_transmission options input in measure_throughput method. Signed-off-by: yufengmx --- framework/pktgen_base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/pktgen_base.py b/framework/pktgen_base.py index 6bfc49a..eec4e6f 100644 --- a/framework/pktgen_base.py +++ b/framework/pktgen_base.py @@ -237,7 +237,7 @@ class PacketGenerator(object): # start warm up traffic self.__warm_up_pktgen(stream_ids, options, delay) # main traffic - self._start_transmission(stream_ids) + self._start_transmission(stream_ids, options) # keep traffic within a duration time and get throughput statistic if interval and duration: stats = self.__get_multi_throughput_statistic( -- 1.9.3