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 47A3CA04C9; Fri, 18 Sep 2020 07:29:07 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id CB7A71D8DD; 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 310A11D6D9 for ; Fri, 18 Sep 2020 07:29:05 +0200 (CEST) IronPort-SDR: orfngobzqP8kuqZ6COkb603PwczEs2IhR7O5PBsfrupH61AGoGW9l4GpcNYZdTVoPaBjZO6bt0 t7tKA0MYTd3w== X-IronPort-AV: E=McAfee;i="6000,8403,9747"; a="244696450" X-IronPort-AV: E=Sophos;i="5.77,273,1596524400"; d="scan'208";a="244696450" 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:03 -0700 IronPort-SDR: VDyIuVzDYSDiYuh73G5VUUZzdmyQkc+JC7Yd3bmof1hZ6hYsojb5HwYF+Vh9wIc8bHtaWYqYvK +FIx9h3BxUtQ== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.77,273,1596524400"; d="scan'208";a="320492472" Received: from unknown (HELO localhost.localdomain) ([10.240.183.80]) by orsmga002.jf.intel.com with ESMTP; 17 Sep 2020 22:29:02 -0700 From: "Jiang, YuX" To: dts@dpdk.org Cc: JiangYu Date: Fri, 18 Sep 2020 13:26:23 +0800 Message-Id: <20200918052626.9525-5-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 4/7] tests/TestSuite_vdev_primary_secondary: 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_vdev_primary_secondary.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/TestSuite_vdev_primary_secondary.py b/tests/TestSuite_vdev_primary_secondary.py index 0919c1f..50d5b59 100644 --- a/tests/TestSuite_vdev_primary_secondary.py +++ b/tests/TestSuite_vdev_primary_secondary.py @@ -66,13 +66,14 @@ class TestVdevPrimarySecondary(TestCase): self.pci_info = self.dut.ports_info[0]['pci'] self.app_testpmd_path = self.dut.apps_name['test-pmd'] self.app_symmetric_mp_path = self.dut.apps_name['symmetric_mp'] + self.testpmd_name = self.app_testpmd_path.split("/")[-1] def set_up(self): """ Run before each test case. """ self.dut.send_expect("rm -rf %s/vhost-net*" % self.base_dir, "#") - self.dut.send_expect("killall -s INT testpmd", "#") + self.dut.send_expect("killall -s INT %s" % self.testpmd_name, "#") self.dut.send_expect("killall -s INT qemu-system-x86_64", "#") @@ -178,7 +179,7 @@ class TestVdevPrimarySecondary(TestCase): self.vm_dut.kill_all() self.dut.kill_all() self.vm.stop() - self.dut.send_expect("killall -s INT testpmd", "#") + self.dut.send_expect("killall -s INT %s" % self.testpmd_name, "#") self.dut.send_expect("killall -s INT qemu-system-x86_64", "#") time.sleep(2) -- 2.7.4