From patchwork Wed Mar 31 10:16:58 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Tu, Lijuan" X-Patchwork-Id: 90157 Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id E5D0AA034F; Wed, 31 Mar 2021 04:18:05 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id D2366140E02; Wed, 31 Mar 2021 04:18:05 +0200 (CEST) Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by mails.dpdk.org (Postfix) with ESMTP id 33592140DED for ; Wed, 31 Mar 2021 04:18:04 +0200 (CEST) IronPort-SDR: B423IcM0uOaYio0l/f5wEcIXF/j0uBKTGf4WitTy+Dj9Dt7jzM+clwdkV11ypoImI73MOFmTz7 zNsvpFNDKKWA== X-IronPort-AV: E=McAfee;i="6000,8403,9939"; a="179027935" X-IronPort-AV: E=Sophos;i="5.81,291,1610438400"; d="scan'208";a="179027935" Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by orsmga101.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 30 Mar 2021 19:18:03 -0700 IronPort-SDR: Y0nx4WYCpp6FFJ7ZQ+WVa2tJeQX79tjWsf0a2zLq+emDnnN3YMK6GX9UL9ANFwDogGvwYwVDlv qPK6YzzIA5jg== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.81,291,1610438400"; d="scan'208";a="445432425" Received: from dpdk-icelake-perf.sh.intel.com ([10.67.118.199]) by fmsmga002.fm.intel.com with ESMTP; 30 Mar 2021 19:18:02 -0700 From: Lijuan Tu To: dliu@iol.unh.edu, ohilyard@iol.unh.edu, alialnu@nvidia.com Cc: dts@dpdk.org, Lijuan Tu Date: Wed, 31 Mar 2021 10:16:58 +0000 Message-Id: <20210331101659.506185-6-lijuan.tu@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20210331101659.506185-1-lijuan.tu@intel.com> References: <20210331101659.506185-1-lijuan.tu@intel.com> MIME-Version: 1.0 Subject: [dts] [v3 5/6] tests/nic_single_core_perf: add expected mpps into JSON X-BeenThere: dts@dpdk.org X-Mailman-Version: 2.1.29 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" expose more perf info for CI analysis. Signed-off-by: Lijuan Tu --- tests/TestSuite_nic_single_core_perf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/TestSuite_nic_single_core_perf.py b/tests/TestSuite_nic_single_core_perf.py index dd35caac..8606f599 100644 --- a/tests/TestSuite_nic_single_core_perf.py +++ b/tests/TestSuite_nic_single_core_perf.py @@ -382,7 +382,7 @@ class TestNicSingleCorePerf(TestCase): row_dict0['parameters'] = list() row_dict0['status'] = row_in['Status'] row_dict1 = dict(name="Throughput", value=row_in['Real-Mpps'], unit="Mpps", - delta=row_in['Fluc Ratio']) + delta=row_in['Fluc Ratio'], expected=row_in['Expected-Mpps']) row_dict2 = dict(name="Txd/Rxd", value=row_in["TXD/RXD"], unit="descriptor") row_dict3 = dict(name="frame_size", value=row_in["Frame Size"], unit="bytes") row_dict4 = dict(name="Fwd_core", value=row_in["Fwd_core"])