From patchwork Fri Jul 31 07:58:26 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Yufen.Mo" X-Patchwork-Id: 75095 Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id D96C5A052B; Fri, 31 Jul 2020 10:00:55 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id BCE561C029; Fri, 31 Jul 2020 10:00:55 +0200 (CEST) Received: from mga12.intel.com (mga12.intel.com [192.55.52.136]) by dpdk.org (Postfix) with ESMTP id 547CC1C029 for ; Fri, 31 Jul 2020 10:00:53 +0200 (CEST) IronPort-SDR: 828IvuCDzABZSktk9biLfkRFXLnlVRXZELeoiLEFWjN0xLaHHoxhSoc7nt9uiETAj9TLrLhibL SDW2frvyebDA== X-IronPort-AV: E=McAfee;i="6000,8403,9698"; a="131310754" X-IronPort-AV: E=Sophos;i="5.75,417,1589266800"; d="scan'208";a="131310754" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga008.jf.intel.com ([10.7.209.65]) by fmsmga106.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 31 Jul 2020 01:00:48 -0700 IronPort-SDR: HDpVdz8J5tbrnLUPtbTCgbMo2gsdHqu9D7Ww2FGfIkfMuC/saW37QGQJJ8mbeYjtXUqhO9d4c0 HYWrpwf5AsWg== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.75,417,1589266800"; d="scan'208";a="321337750" Received: from dpdk-moyufen06.sh.intel.com ([10.67.116.208]) by orsmga008.jf.intel.com with ESMTP; 31 Jul 2020 01:00:47 -0700 From: yufengmx To: dts@dpdk.org Cc: yufengmx Date: Fri, 31 Jul 2020 15:58:26 +0800 Message-Id: <20200731075826.43390-2-yufengx.mo@intel.com> X-Mailer: git-send-email 2.21.0 In-Reply-To: <20200731075826.43390-1-yufengx.mo@intel.com> References: <20200731075826.43390-1-yufengx.mo@intel.com> MIME-Version: 1.0 Subject: [dts] [PATCH V2 1/1] l3fwd: update rfc2544/throughput json and display 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" update rfc2544/throughput json and display. Signed-off-by: yufengmx --- tests/l3fwd_base.py | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/tests/l3fwd_base.py b/tests/l3fwd_base.py index a6e26b0..c2b77db 100644 --- a/tests/l3fwd_base.py +++ b/tests/l3fwd_base.py @@ -827,11 +827,12 @@ class L3fwdBase(object): expected, pps, round(gap, 2)) self.logger.error(msg) else: + expected = pps msg = ('{0} {1} expected throughput value is not set, ' 'ignore check').format(config, frame_size) self.logger.warning(msg) status = 'pass' - js_results.append([status, [pps, linerate - pps], percentage, config, frame_size]) + js_results.append([status, [pps, pps - expected], percentage, config, frame_size]) # save data with json format self.__save_throughput_result(self.__cur_case, js_results) # display result table @@ -861,6 +862,7 @@ class L3fwdBase(object): self.__cur_case, {}).get(self.__nic_name, {}).get( config, {}).get(str(frame_size), {}) zero_loss_rate, tx_pkts, rx_pkts, pps = result if result else [None] * 3 + zero_loss_rate = zero_loss_rate or 0 mpps = pps / 1000000.0 # expected line rate _frame_size = self.__get_frame_size(stm_name, frame_size) @@ -880,16 +882,26 @@ class L3fwdBase(object): ]) # check data with expected values expected_rate = float(expected_cfg.get('rate') or 100.0) + gap = 100 * (zero_loss_rate - expected_rate) / expected_rate status = 'pass' \ - if zero_loss_rate and zero_loss_rate > expected_rate \ + if abs(gap) < bias \ else 'failed' js_results.append( [status, - [mpps, linerate - mpps], actual_rate_percent, + [mpps, zero_loss_rate - expected_rate], actual_rate_percent, config, frame_size]) # save data in json file self.__save_rfc2544_result(self.__cur_case, js_results) # display result table + # Total Cores/Threads/Queues per port + # Frame Size + # Mode: LPM/EM + # Expected LineRate % : which config in l3fwd_lpm_ipv4_rfc2544.cfg + # Actual LineRate % : actual run zero loss rate + # Expected Throughput (Mpps) : Max linerate throughput value * 'Expected LineRate %' + # Actual Throughput (Mpps) : actual run throughput value on the zero loss rate + # tx_pkts : send pkts num + # rx_pkts : received pkts num title = [ 'Total Cores/Threads/Queues per port', "Frame Size",