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 B14B8A04DD; Mon, 16 Nov 2020 03:16:34 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id A94A1323E; Mon, 16 Nov 2020 03:16:33 +0100 (CET) Received: from mga17.intel.com (mga17.intel.com [192.55.52.151]) by dpdk.org (Postfix) with ESMTP id E5E961DB9 for ; Mon, 16 Nov 2020 03:16:30 +0100 (CET) IronPort-SDR: XUgD9lOJen37gMrgMQwyc8Ca+ZXjElvwdQJ68meCGot6PBxvK7cyHo7wNyuXRxvQXLRqY8Lyy/ NpebXin6quGQ== X-IronPort-AV: E=McAfee;i="6000,8403,9806"; a="150542557" X-IronPort-AV: E=Sophos;i="5.77,481,1596524400"; d="scan'208";a="150542557" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by fmsmga107.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 15 Nov 2020 18:16:30 -0800 IronPort-SDR: fo1Adspau9AA5/Ww4tl/B49BBk116SWSkOE1fgTsmEK9czYO9hLAIeZBJSnv5YaGwNOrKBRxVe 6i7nQYNQlohw== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.77,481,1596524400"; d="scan'208";a="358309598" Received: from dpdk-lijuan-purley2.sh.intel.com ([10.67.119.168]) by fmsmga004.fm.intel.com with ESMTP; 15 Nov 2020 18:16:29 -0800 From: hanyingya To: dts@dpdk.org Cc: hanyingya Date: Mon, 16 Nov 2020 10:11:56 +0800 Message-Id: <20201116021156.63815-1-yingyax.han@intel.com> X-Mailer: git-send-email 2.17.1 Subject: [dts] [PATCH V1]tests/vf_single_core: fix the result of vf_single_core is overwritten 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" duplicated with nic_single_core suite. Signed-off-by: hanyingya --- tests/TestSuite_vf_single_core_perf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/TestSuite_vf_single_core_perf.py b/tests/TestSuite_vf_single_core_perf.py index 57ab7240..47550bf8 100644 --- a/tests/TestSuite_vf_single_core_perf.py +++ b/tests/TestSuite_vf_single_core_perf.py @@ -374,7 +374,7 @@ class TestVfSingleCorePerf(TestCase): json_obj[case_name].append(row_dict0) status_result.append(row_dict0['status']) with open(os.path.join(rst.path2Result, - '{0:s}_single_core_perf.json'.format( + '{0:s}_vf_single_core_perf.json'.format( self.nic)), 'w') as fp: json.dump(json_obj, fp) self.verify("FAIL" not in status_result, "Excessive gap between test results and expectations") -- 2.17.1