From patchwork Fri Sep 11 14:45:41 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Ling, WeiX" X-Patchwork-Id: 77333 X-Patchwork-Delegate: lijuan.tu@intel.com 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 AF88EA04B7; Fri, 11 Sep 2020 09:03:04 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id A720B1C0CE; Fri, 11 Sep 2020 09:03:04 +0200 (CEST) Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by dpdk.org (Postfix) with ESMTP id 3A0948F96 for ; Fri, 11 Sep 2020 09:03:03 +0200 (CEST) IronPort-SDR: FjlEPfgn0KqbET6am2IN0HL1F4JKjkT8DZpciOg9XlVKEQv8QykCxjY6Hx00CKH3jcSwQt4PIR Zi05ftKl07Cw== X-IronPort-AV: E=McAfee;i="6000,8403,9740"; a="157990381" X-IronPort-AV: E=Sophos;i="5.76,414,1592895600"; d="scan'208";a="157990381" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by fmsmga103.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 11 Sep 2020 00:03:02 -0700 IronPort-SDR: N52jENbJC2/j/7qogYpa1CoBQcCZrVOQkqWiKEFCljey6t4LoFrklUmuhhFIEz0nAq/Rdf7GHe hS47L6AT936Q== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.76,414,1592895600"; d="scan'208";a="407999401" Received: from unknown (HELO localhost.localdomain) ([10.240.183.222]) by fmsmga001.fm.intel.com with ESMTP; 11 Sep 2020 00:03:01 -0700 From: lingwei To: dts@dpdk.org Cc: lingwei Date: Fri, 11 Sep 2020 14:45:41 +0000 Message-Id: <20200911144542.28336-5-weix.ling@intel.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20200911144542.28336-1-weix.ling@intel.com> References: <20200911144542.28336-1-weix.ling@intel.com> Subject: [dts] [dts 4/5] tests/TestSuite_vmdq_dcb:use API to set dpdk config when use meson 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" Signed-off-by: lingwei --- tests/TestSuite_vmdq_dcb.py | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/tests/TestSuite_vmdq_dcb.py b/tests/TestSuite_vmdq_dcb.py index d202441..5f0da0f 100644 --- a/tests/TestSuite_vmdq_dcb.py +++ b/tests/TestSuite_vmdq_dcb.py @@ -93,15 +93,10 @@ class TestVmdqDcb(TestCase): """ Rebuild dpdk """ - out = self.dut.send_expect("grep 'CONFIG_RTE_LIBRTE_I40E_QUEUE_NUM_PER_VM' ./config/common_base", "#", 20) - vm_num = re.findall(r'\d+', out)[-1] - if str(nb_queue_per_vm) == vm_num: - return - else: - self.dut.send_expect("sed -i -e 's/CONFIG_RTE_LIBRTE_I40E_QUEUE_NUM_PER_VM=%s/CONFIG_RTE_LIBRTE_I40E_" - "QUEUE_NUM_PER_VM=%s/' ./config/common_base" % (vm_num, nb_queue_per_vm), "#", 20) - self.dut.set_build_options({'RTE_LIBRTE_I40E_QUEUE_NUM_PER_VM': nb_queue_per_vm}) - self.dut.build_install_dpdk(self.target) + self.dut.send_expect("sed -i -e 's/CONFIG_RTE_LIBRTE_I40E_QUEUE_NUM_PER_VM=.*$/CONFIG_RTE_LIBRTE_I40E_" + "QUEUE_NUM_PER_VM=%s/' ./config/common_base" % nb_queue_per_vm, "#", 20) + self.dut.set_build_options({'RTE_LIBRTE_I40E_QUEUE_NUM_PER_VM': nb_queue_per_vm}) + self.dut.build_install_dpdk(self.target) def start_application(self, npools, ntcs): """