[V1] tests/vhost_pmd_xstats: support meson build using apps_name

Message ID 20200916113518.25704-1-yux.jiang@intel.com (mailing list archive)
State Accepted
Headers
Series [V1] tests/vhost_pmd_xstats: support meson build using apps_name |

Commit Message

Yu Jiang Sept. 16, 2020, 11:35 a.m. UTC
  From: JiangYu <yux.jiang@intel.com>

update killall apps_name

Signed-off-by: JiangYu <yux.jiang@intel.com>
---
 tests/TestSuite_vhost_pmd_xstats.py | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)
  

Comments

Yu Jiang Sept. 16, 2020, 11:34 a.m. UTC | #1
Tested-by: Jiang, YuX <yux.jiang@intel.com>

    Best Regards
    Jiang yu

> -----Original Message-----
> From: Jiang, YuX
> Sent: Wednesday, September 16, 2020 7:35 PM
> To: dts@dpdk.org
> Cc: Jiang, YuX <yux.jiang@intel.com>
> Subject: [dts] [PATCH V1] tests/vhost_pmd_xstats: support meson build
> using apps_name
> 
> From: JiangYu <yux.jiang@intel.com>
> 
> update killall apps_name
> 
> Signed-off-by: JiangYu <yux.jiang@intel.com>
> ---
>  tests/TestSuite_vhost_pmd_xstats.py | 7 ++++---
>  1 file changed, 4 insertions(+), 3 deletions(-)
> 
> diff --git a/tests/TestSuite_vhost_pmd_xstats.py
> b/tests/TestSuite_vhost_pmd_xstats.py
> index f68385f..a3b0a2f 100755
> --- a/tests/TestSuite_vhost_pmd_xstats.py
> +++ b/tests/TestSuite_vhost_pmd_xstats.py
> @@ -73,6 +73,7 @@ class TestVhostPmdXstats(TestCase):
>          self.core_list_host = self.core_list[3:6]
>          self.dst_mac = self.dut.get_mac_address(self.dut_ports[0])
>          self.app_testpmd_path = self.dut.apps_name['test-pmd']
> +        self.testpmd_name=self.app_testpmd_path.split("/")[-1]
> 
>      def set_up(self):
>          """
> @@ -80,7 +81,7 @@ class TestVhostPmdXstats(TestCase):
>          Launch vhost sample using default params
>          """
>          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.vhost_user = self.dut.new_session(suite="vhost-user")
>          self.virtio_user = self.dut.new_session(suite="virtio-user")
> 
> @@ -345,10 +346,10 @@ class TestVhostPmdXstats(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, "#")
> 
>      def tear_down_all(self):
>          """
>          Run after each test suite.
>          """
> -        pass
> \ No newline at end of file
> +        pass
> --
> 2.7.4
  
Tu, Lijuan Sept. 23, 2020, 7:56 a.m. UTC | #2
> Subject: [dts] [PATCH V1] tests/vhost_pmd_xstats: support meson build using
> apps_name
> 
> From: JiangYu <yux.jiang@intel.com>
> 
> update killall apps_name
> 
> Signed-off-by: JiangYu <yux.jiang@intel.com>

Applied
  

Patch

diff --git a/tests/TestSuite_vhost_pmd_xstats.py b/tests/TestSuite_vhost_pmd_xstats.py
index f68385f..a3b0a2f 100755
--- a/tests/TestSuite_vhost_pmd_xstats.py
+++ b/tests/TestSuite_vhost_pmd_xstats.py
@@ -73,6 +73,7 @@  class TestVhostPmdXstats(TestCase):
         self.core_list_host = self.core_list[3:6]
         self.dst_mac = self.dut.get_mac_address(self.dut_ports[0])
         self.app_testpmd_path = self.dut.apps_name['test-pmd']
+        self.testpmd_name=self.app_testpmd_path.split("/")[-1]
 
     def set_up(self):
         """ 
@@ -80,7 +81,7 @@  class TestVhostPmdXstats(TestCase):
         Launch vhost sample using default params
         """
         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.vhost_user = self.dut.new_session(suite="vhost-user")
         self.virtio_user = self.dut.new_session(suite="virtio-user")
 
@@ -345,10 +346,10 @@  class TestVhostPmdXstats(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, "#")
 
     def tear_down_all(self):
         """
         Run after each test suite.
         """
-        pass
\ No newline at end of file
+        pass