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 E62FBA052A; Mon, 25 Jan 2021 09:52:02 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 57D0F140E1D; Mon, 25 Jan 2021 09:52:02 +0100 (CET) Received: from mga18.intel.com (mga18.intel.com [134.134.136.126]) by mails.dpdk.org (Postfix) with ESMTP id EAC3B140E42 for ; Mon, 25 Jan 2021 09:52:00 +0100 (CET) IronPort-SDR: F0Xr3F8rDhpNRhJC/ZK5oqXTWvl+FTWxoS2UclI5TUCHvJgUMynVpSOi6KYfoaQ1vn4fWU3azh Ydm9yYdAJUuw== X-IronPort-AV: E=McAfee;i="6000,8403,9874"; a="167366489" X-IronPort-AV: E=Sophos;i="5.79,373,1602572400"; d="scan'208";a="167366489" Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by orsmga106.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 25 Jan 2021 00:51:59 -0800 IronPort-SDR: DSv4/iqN+8snai+/+DfyFvNIkS8NIOzskglhF5STSBR/4nmqagJNu9PJdLVbdR6whcwP7ONYuv j7p0hdODw/2w== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.79,373,1602572400"; d="scan'208";a="471978614" Received: from dpdk-moyufen06.sh.intel.com ([10.67.116.208]) by fmsmga001.fm.intel.com with ESMTP; 25 Jan 2021 00:51:58 -0800 From: yufengmx To: dts@dpdk.org, lijuan.tu@intel.com Cc: yufengmx Date: Mon, 25 Jan 2021 16:44:13 +0800 Message-Id: <20210125084414.8503-27-yufengx.mo@intel.com> X-Mailer: git-send-email 2.21.0 In-Reply-To: <20210125084414.8503-1-yufengx.mo@intel.com> References: <20210125084414.8503-1-yufengx.mo@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [dts] [PATCH V1 26/27] tests/vf_l3fwd_kernelpf: update script 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" update perf testing enum parameters and methods name. Signed-off-by: yufengmx --- tests/TestSuite_vf_l3fwd_kernelpf.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/tests/TestSuite_vf_l3fwd_kernelpf.py b/tests/TestSuite_vf_l3fwd_kernelpf.py index b2ae7ec0..4cd44aaa 100644 --- a/tests/TestSuite_vf_l3fwd_kernelpf.py +++ b/tests/TestSuite_vf_l3fwd_kernelpf.py @@ -1,6 +1,6 @@ # BSD LICENSE # -# Copyright(c) 2020 Intel Corporation. All rights reserved. +# Copyright(c) 2010-2021 Intel Corporation. All rights reserved. # All rights reserved. # # Redistribution and use in source and binary forms, with or without @@ -32,10 +32,10 @@ import os import time from test_case import TestCase -from l3fwd_base import L3fwdBase, IP_TYPE, MATCH_MODE, SUITE_TYPE +from perf_test_base import PerfTestBase, IP_TYPE, MATCH_MODE, SUITE_TYPE -class TestVfL3fwdKernelPf(TestCase, L3fwdBase): +class TestVfL3fwdKernelPf(TestCase, PerfTestBase): # # Test cases. # @@ -62,15 +62,15 @@ class TestVfL3fwdKernelPf(TestCase, L3fwdBase): cores = self.dut.get_core_list("1S/6C/1T", socket=socket) self.verify(cores, "Requested 6 cores failed") # init l3fwd common base class parameters - self.l3fwd_init(valports, socket, mode=SUITE_TYPE.VF) + PerfTestBase.__init__(self, valports, socket, mode=SUITE_TYPE.VF) # preset testing environment - self.l3fwd_preset_test_environment(self.get_suite_cfg()) + self.perf_preset_test_environment(self.get_suite_cfg()) def tear_down_all(self): """ Run after each test suite. """ - self.l3fwd_destroy_resource() + self.perf_destroy_resource() self.l3fwd_save_results(json_file="{}.json".format(self.suite_name)) def set_up(self): @@ -84,8 +84,8 @@ class TestVfL3fwdKernelPf(TestCase, L3fwdBase): Run after each test case. """ self.dut.kill_all() - self.l3fwd_reset_cur_case() + self.perf_reset_cur_case() def test_perf_vf_throughput_ipv4_lpm(self): - self.l3fwd_set_cur_case('test_perf_vf_throughput_ipv4_lpm') + self.perf_set_cur_case('test_perf_vf_throughput_ipv4_lpm') self.ms_throughput(l3_proto=IP_TYPE.V4, mode=MATCH_MODE.LPM) -- 2.21.0