test suite reviews and discussions
 help / color / mirror / Atom feed
From: "Jiang, YuX" <yux.jiang@intel.com>
To: dts@dpdk.org
Cc: JiangYu <yux.jiang@intel.com>
Subject: [dts] [PATCH V1 3/7] tests/TestSuite_vhost_virtio_user_interrupt: support meson build
Date: Fri, 18 Sep 2020 13:26:22 +0800	[thread overview]
Message-ID: <20200918052626.9525-4-yux.jiang@intel.com> (raw)
In-Reply-To: <20200918052626.9525-1-yux.jiang@intel.com>

From: JiangYu <yux.jiang@intel.com>

Adapt testpmd_name and l3fwdpower_name

Signed-off-by: JiangYu <yux.jiang@intel.com>
---
 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


  parent reply	other threads:[~2020-09-18  5:29 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-09-18  5:26 [dts] [PATCH V1 0/7] Modify virito func suites to " Jiang, YuX
2020-09-18  5:26 ` [dts] [PATCH V1 1/7] tests/TestSuite_vm2vm_virtio_pmd: " Jiang, YuX
2020-09-18  5:26 ` [dts] [dst] [PATCH V1 2/7] tests/TestSuite_virtio_user_as_exceptional_path: " Jiang, YuX
2020-09-18  5:26 ` Jiang, YuX [this message]
2020-09-18  5:26 ` [dts] [PATCH V1 4/7] tests/TestSuite_vdev_primary_secondary: " Jiang, YuX
2020-09-18  5:26 ` [dts] [PATCH V1 5/7] tests/TestSuite_loopback_virtio_user_server_mode: " Jiang, YuX
2020-09-18  5:26 ` [dts] [PATCH V1 6/7] tests/TestSuite_loopback_multi_queues: " Jiang, YuX
2020-09-18  5:26 ` [dts] [PATCH V1 7/7] tests/TestSuite_loopback_multi_paths_port_restart: " Jiang, YuX
2020-09-22  8:05   ` Ma, LihongX
2020-09-23  8:39 ` [dts] [PATCH V1 0/7] Modify virito func suites to " Tu, Lijuan

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20200918052626.9525-4-yux.jiang@intel.com \
    --to=yux.jiang@intel.com \
    --cc=dts@dpdk.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).