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 82C69A04C7; Fri, 18 Sep 2020 07:29:06 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 799661D6F5; Fri, 18 Sep 2020 07:29:06 +0200 (CEST) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by dpdk.org (Postfix) with ESMTP id 8FA3F1D6D9 for ; Fri, 18 Sep 2020 07:29:04 +0200 (CEST) IronPort-SDR: +3j9D+RgXwzwVsteIg35CtawFYtXfXCp8oaCqjnLJsvvzkybSAD5Rs1xaPSMubaV/xzp9ONk8J 0iXXO3PAGQFQ== X-IronPort-AV: E=McAfee;i="6000,8403,9747"; a="244696441" X-IronPort-AV: E=Sophos;i="5.77,273,1596524400"; d="scan'208";a="244696441" 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:02 -0700 IronPort-SDR: k5tfvTSBS2X+n+7TYLyBdHzOfpD8Y5groVplKpmjjv6dNQl97ek4EbiED6AHbro9aBti44zmY+ 9/sxUfowTyvA== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.77,273,1596524400"; d="scan'208";a="320492461" Received: from unknown (HELO localhost.localdomain) ([10.240.183.80]) by orsmga002.jf.intel.com with ESMTP; 17 Sep 2020 22:29:01 -0700 From: "Jiang, YuX" To: dts@dpdk.org Cc: JiangYu Date: Fri, 18 Sep 2020 13:26:22 +0800 Message-Id: <20200918052626.9525-4-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 3/7] tests/TestSuite_vhost_virtio_user_interrupt: 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 and l3fwdpower_name Signed-off-by: JiangYu --- tests/TestSuite_vhost_virtio_user_interrupt.py | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/tests/TestSuite_vhost_virtio_user_interrupt.py b/tests/TestSuite_vhost_virtio_user_interrupt.py index 118fb8e..ae75da5 100644 --- a/tests/TestSuite_vhost_virtio_user_interrupt.py +++ b/tests/TestSuite_vhost_virtio_user_interrupt.py @@ -64,13 +64,15 @@ class TestVirtioUserInterrupt(TestCase): self.tx_interface = self.tester.get_interface(self.tx_port) self.app_l3fwd_power_path = self.dut.apps_name['l3fwd-power'] self.app_testpmd_path = self.dut.apps_name['test-pmd'] + self.testpmd_name = self.app_testpmd_path.split("/")[-1] + self.l3fwdpower_name = self.app_l3fwd_power_path.split("/")[-1] def set_up(self): """ run before each test case. """ - self.dut.send_expect("killall -s INT testpmd", "#") - self.dut.send_expect("killall l3fwd-power", "#") + self.dut.send_expect("killall -s INT %s" % self.testpmd_name, "#") + self.dut.send_expect("killall %s" % self.l3fwdpower_name, "#") self.dut.send_expect("rm -rf vhost-net*", "#") self.l3fwd = self.dut.new_session(suite="l3fwd") @@ -259,8 +261,8 @@ class TestVirtioUserInterrupt(TestCase): """ run after each test case. """ - self.dut.send_expect("killall l3fwd-power", "#") - self.dut.send_expect("killall -s INT testpmd", "#") + self.dut.send_expect("killall %s" % self.l3fwdpower_name, "#") + self.dut.send_expect("killall -s INT %s" % self.testpmd_name, "#") self.close_all_session() def tear_down_all(self): -- 2.7.4