From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 3E3E9A034F; Wed, 31 Mar 2021 03:35:39 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 38EFC140DEA; Wed, 31 Mar 2021 03:35:39 +0200 (CEST) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by mails.dpdk.org (Postfix) with ESMTP id 820F440141 for ; Wed, 31 Mar 2021 03:35:37 +0200 (CEST) IronPort-SDR: GD++WJp/T7xpy6tkC8IkKihtNt6TexhC5CVVJuFNlJnfAlW4VzsqDKFB9+NXbV/8OVa0yzvp3d LZGecrOGqYXg== X-IronPort-AV: E=McAfee;i="6000,8403,9939"; a="277070335" X-IronPort-AV: E=Sophos;i="5.81,291,1610438400"; d="scan'208";a="277070335" Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 30 Mar 2021 18:35:37 -0700 IronPort-SDR: DjJ9dGQn4l4gv8dAaNJ6bHSHHMW86JFURHo9D6leM9+4Xwvx/q8aqKADYuOgxfPb62eoq4eUPO WlCf81/mgoxQ== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.81,291,1610438400"; d="scan'208";a="445418606" Received: from dpdk-icelake-perf.sh.intel.com ([10.67.118.199]) by fmsmga002.fm.intel.com with ESMTP; 30 Mar 2021 18:35:35 -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 09:34:09 +0000 Message-Id: <20210331093410.505773-6-lijuan.tu@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20210331093410.505773-1-lijuan.tu@intel.com> References: <20210331093410.505773-1-lijuan.tu@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [dts] [v2 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"]) -- 2.25.1