From patchwork Thu Sep 3 08:28:34 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Lingli Chen X-Patchwork-Id: 76366 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 359F3A04D9; Thu, 3 Sep 2020 10:30:42 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 264C01C0CE; Thu, 3 Sep 2020 10:30:42 +0200 (CEST) Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by dpdk.org (Postfix) with ESMTP id CAFDA1C0AF for ; Thu, 3 Sep 2020 10:30:39 +0200 (CEST) IronPort-SDR: OQL1m7WyInBOkmq63IzwOFcob5BUSCUxNhvZFdq0w5KFm1o5wu9z5EalPls/TFaRk7EN/Obmvq aAe70eUTPoGQ== X-IronPort-AV: E=McAfee;i="6000,8403,9732"; a="221753285" X-IronPort-AV: E=Sophos;i="5.76,386,1592895600"; d="scan'208";a="221753285" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga002.jf.intel.com ([10.7.209.21]) by orsmga105.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 03 Sep 2020 01:30:38 -0700 IronPort-SDR: 0OSvxSiSy6CnNhrCoOvj5or7Y2ywX9LxTvJKzozAihZRlZqBEfiHTQb/mrcrsD5gctmU6uCYVn +9Le6KGn6YVQ== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.76,385,1592895600"; d="scan'208";a="315404210" Received: from unknown (HELO localhost.localdomain) ([10.240.183.80]) by orsmga002.jf.intel.com with ESMTP; 03 Sep 2020 01:30:37 -0700 From: Chen Linglix To: dts@dpdk.org Cc: Chen Linglix Date: Thu, 3 Sep 2020 16:28:34 +0800 Message-Id: <20200903082839.30213-11-linglix.chen@intel.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20200903082839.30213-1-linglix.chen@intel.com> References: <20200903082839.30213-1-linglix.chen@intel.com> Subject: [dts] [dts 10/15] tests/TestSuite_unit_tests_pmd_perf:update to support meson build 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: Chen Linglix --- tests/TestSuite_unit_tests_pmd_perf.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tests/TestSuite_unit_tests_pmd_perf.py b/tests/TestSuite_unit_tests_pmd_perf.py index f8b36d1..4546169 100644 --- a/tests/TestSuite_unit_tests_pmd_perf.py +++ b/tests/TestSuite_unit_tests_pmd_perf.py @@ -80,7 +80,8 @@ class TestUnitTestsPmdPerf(TestCase): """ eal_params = self.dut.create_eal_parameters(cores=self.cores, ports=[0,1]) - self.dut.send_expect("./%s/app/test %s" % (self.target, eal_params), "R.*T.*E.*>.*>", 60) + app_name = self.dut.apps_name['test'] + self.dut.send_expect(app_name + eal_params,"R.*T.*E.*>.*>", 60) for mode in self.burst_ctlmodes: self.dut.send_expect("set_rxtx_sc %s" % mode, "RTE>>", 10) out = self.dut.send_expect("pmd_perf_autotest", "RTE>>", 120) @@ -102,7 +103,8 @@ class TestUnitTestsPmdPerf(TestCase): self.result_table_create(self.table_header) eal_params = self.dut.create_eal_parameters(cores=self.cores, ports=[0,1]) print((self.table_header)) - self.dut.send_expect("./%s/app/test %s" % (self.target, eal_params), "R.*T.*E.*>.*>", 60) + app_name = self.dut.apps_name['test'] + self.dut.send_expect(app_name + eal_params,"R.*T.*E.*>.*>", 60) for mode in self.rxtx_modes: table_row = [mode] self.dut.send_expect("set_rxtx_sc continuous", "RTE>>", 10)