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 36716A04C8; Fri, 18 Sep 2020 07:29:09 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 2E0E51D8E3; Fri, 18 Sep 2020 07:29:09 +0200 (CEST) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by dpdk.org (Postfix) with ESMTP id 7DC5B1D8D8 for ; Fri, 18 Sep 2020 07:29:07 +0200 (CEST) IronPort-SDR: 4F2FZL/pfLBPebgeHzOSNuFSPYcGTKDamC4tMBKF8RkR4bwvIIHFMdWU9e4Ux1zh5aK+uqVQeG aSA3AStPhE6w== X-IronPort-AV: E=McAfee;i="6000,8403,9747"; a="244696470" X-IronPort-AV: E=Sophos;i="5.77,273,1596524400"; d="scan'208";a="244696470" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga002.jf.intel.com ([10.7.209.21]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Sep 2020 22:29:06 -0700 IronPort-SDR: 3q/NsdxJGhWVe4eNdLlYNjAPULEgkZ8DHjx8TU/q/7nKAoNEv5uaDMSzQ4Ca3MbcEezUNcq4xA 4WX6rTl+9icQ== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.77,273,1596524400"; d="scan'208";a="320492502" Received: from unknown (HELO localhost.localdomain) ([10.240.183.80]) by orsmga002.jf.intel.com with ESMTP; 17 Sep 2020 22:29:05 -0700 From: "Jiang, YuX" To: dts@dpdk.org Cc: JiangYu Date: Fri, 18 Sep 2020 13:26:25 +0800 Message-Id: <20200918052626.9525-7-yux.jiang@intel.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20200918052626.9525-1-yux.jiang@intel.com> References: <20200918052626.9525-1-yux.jiang@intel.com> Subject: [dts] [PATCH V1 6/7] tests/TestSuite_loopback_multi_queues: 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" From: JiangYu Adapt testpmd_name Signed-off-by: JiangYu --- tests/TestSuite_loopback_multi_queues.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/TestSuite_loopback_multi_queues.py b/tests/TestSuite_loopback_multi_queues.py index 0fdadeb..86c2ce9 100644 --- a/tests/TestSuite_loopback_multi_queues.py +++ b/tests/TestSuite_loopback_multi_queues.py @@ -60,6 +60,7 @@ class TestLoopbackMultiQueues(TestCase): if 'packet_sizes' in self.get_suite_cfg(): self.frame_sizes = self.get_suite_cfg()['packet_sizes'] self.path=self.dut.apps_name['test-pmd'] + self.testpmd_name = self.path.split("/")[-1] def set_up(self): """ @@ -67,7 +68,7 @@ class TestLoopbackMultiQueues(TestCase): """ # Prepare the result table self.dut.send_expect("rm -rf ./vhost-net*", "#") - self.dut.send_expect("killall -s INT testpmd", "#") + self.dut.send_expect("killall -s INT %s" % self.testpmd_name, "#") self.table_header = ["Frame", "Mode", "Throughput(Mpps)", "Queue Number"] self.result_table_create(self.table_header) self.data_verify = {} @@ -380,7 +381,7 @@ class TestLoopbackMultiQueues(TestCase): """ Run after each test case. """ - self.dut.send_expect("killall -s INT testpmd", "#") + self.dut.send_expect("killall -s INT %s" % self.testpmd_name, "#") self.close_all_session() def tear_down_all(self): -- 2.7.4