test suite reviews and discussions
 help / color / mirror / Atom feed
* [dts] [PATCH V1] tests/vhost_multi_queue_qemu: add wait_link_status_up before send pkt
@ 2019-10-15 23:32 lihong
  2019-10-17  1:55 ` Wang, Yinan
  2019-10-22  9:09 ` Tu, Lijuan
  0 siblings, 2 replies; 3+ messages in thread
From: lihong @ 2019-10-15 23:32 UTC (permalink / raw)
  To: dts; +Cc: lihong

Signed-off-by: lihong <lihongx.ma@intel.com>
---
 tests/TestSuite_vhost_multi_queue_qemu.py | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/tests/TestSuite_vhost_multi_queue_qemu.py b/tests/TestSuite_vhost_multi_queue_qemu.py
index d31eb57..f31c132 100644
--- a/tests/TestSuite_vhost_multi_queue_qemu.py
+++ b/tests/TestSuite_vhost_multi_queue_qemu.py
@@ -256,6 +256,8 @@ class TestVhostMultiQueueQemu(TestCase):
         self.vm_dut.send_expect("start", "testpmd>")
 
         self.dut.send_expect("clear port stats all", "testpmd> ", 120)
+        res = self.pmd_out.wait_link_status_up('all', timeout = 15)
+        self.verify(res is True, 'There has port link is down')
         self.send_and_verify("vhost queue > virtio queue")
 
         self.vm_dut.send_expect("stop", "testpmd>", 20)
@@ -298,6 +300,8 @@ class TestVhostMultiQueueQemu(TestCase):
         self.vm_dut.send_expect("set fwd mac", "testpmd>", 20)
         self.vm_dut.send_expect("start", "testpmd>")
         self.dut.send_expect("clear port stats all", "testpmd> ", 120)
+        res = self.pmd_out.wait_link_status_up('all', timeout = 15)
+        self.verify(res is True, 'There has port link is down')
 
         self.send_and_verify("vhost queue < virtio queue")
 
-- 
2.7.4


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [dts] [PATCH V1] tests/vhost_multi_queue_qemu: add wait_link_status_up before send pkt
  2019-10-15 23:32 [dts] [PATCH V1] tests/vhost_multi_queue_qemu: add wait_link_status_up before send pkt lihong
@ 2019-10-17  1:55 ` Wang, Yinan
  2019-10-22  9:09 ` Tu, Lijuan
  1 sibling, 0 replies; 3+ messages in thread
From: Wang, Yinan @ 2019-10-17  1:55 UTC (permalink / raw)
  To: Ma, LihongX, dts; +Cc: Ma, LihongX

Acked-by: Wang, Yinan <yinan.wang@intel.com>

> -----Original Message-----
> From: dts [mailto:dts-bounces@dpdk.org] On Behalf Of lihong
> Sent: 2019年10月16日 7:32
> To: dts@dpdk.org
> Cc: Ma, LihongX <lihongx.ma@intel.com>
> Subject: [dts] [PATCH V1] tests/vhost_multi_queue_qemu: add
> wait_link_status_up before send pkt
> 
> Signed-off-by: lihong <lihongx.ma@intel.com>
> ---
>  tests/TestSuite_vhost_multi_queue_qemu.py | 4 ++++
>  1 file changed, 4 insertions(+)
> 
> diff --git a/tests/TestSuite_vhost_multi_queue_qemu.py
> b/tests/TestSuite_vhost_multi_queue_qemu.py
> index d31eb57..f31c132 100644
> --- a/tests/TestSuite_vhost_multi_queue_qemu.py
> +++ b/tests/TestSuite_vhost_multi_queue_qemu.py
> @@ -256,6 +256,8 @@ class TestVhostMultiQueueQemu(TestCase):
>          self.vm_dut.send_expect("start", "testpmd>")
> 
>          self.dut.send_expect("clear port stats all", "testpmd> ", 120)
> +        res = self.pmd_out.wait_link_status_up('all', timeout = 15)
> +        self.verify(res is True, 'There has port link is down')
>          self.send_and_verify("vhost queue > virtio queue")
> 
>          self.vm_dut.send_expect("stop", "testpmd>", 20) @@ -298,6 +300,8
> @@ class TestVhostMultiQueueQemu(TestCase):
>          self.vm_dut.send_expect("set fwd mac", "testpmd>", 20)
>          self.vm_dut.send_expect("start", "testpmd>")
>          self.dut.send_expect("clear port stats all", "testpmd> ", 120)
> +        res = self.pmd_out.wait_link_status_up('all', timeout = 15)
> +        self.verify(res is True, 'There has port link is down')
> 
>          self.send_and_verify("vhost queue < virtio queue")
> 
> --
> 2.7.4


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [dts] [PATCH V1] tests/vhost_multi_queue_qemu: add wait_link_status_up before send pkt
  2019-10-15 23:32 [dts] [PATCH V1] tests/vhost_multi_queue_qemu: add wait_link_status_up before send pkt lihong
  2019-10-17  1:55 ` Wang, Yinan
@ 2019-10-22  9:09 ` Tu, Lijuan
  1 sibling, 0 replies; 3+ messages in thread
From: Tu, Lijuan @ 2019-10-22  9:09 UTC (permalink / raw)
  To: Ma, LihongX, dts; +Cc: Ma, LihongX

Applied, thanks

> -----Original Message-----
> From: dts [mailto:dts-bounces@dpdk.org] On Behalf Of lihong
> Sent: Wednesday, October 16, 2019 7:32 AM
> To: dts@dpdk.org
> Cc: Ma, LihongX <lihongx.ma@intel.com>
> Subject: [dts] [PATCH V1] tests/vhost_multi_queue_qemu: add
> wait_link_status_up before send pkt
> 
> Signed-off-by: lihong <lihongx.ma@intel.com>
> ---
>  tests/TestSuite_vhost_multi_queue_qemu.py | 4 ++++
>  1 file changed, 4 insertions(+)
> 
> diff --git a/tests/TestSuite_vhost_multi_queue_qemu.py
> b/tests/TestSuite_vhost_multi_queue_qemu.py
> index d31eb57..f31c132 100644
> --- a/tests/TestSuite_vhost_multi_queue_qemu.py
> +++ b/tests/TestSuite_vhost_multi_queue_qemu.py
> @@ -256,6 +256,8 @@ class TestVhostMultiQueueQemu(TestCase):
>          self.vm_dut.send_expect("start", "testpmd>")
> 
>          self.dut.send_expect("clear port stats all", "testpmd> ", 120)
> +        res = self.pmd_out.wait_link_status_up('all', timeout = 15)
> +        self.verify(res is True, 'There has port link is down')
>          self.send_and_verify("vhost queue > virtio queue")
> 
>          self.vm_dut.send_expect("stop", "testpmd>", 20) @@ -298,6 +300,8
> @@ class TestVhostMultiQueueQemu(TestCase):
>          self.vm_dut.send_expect("set fwd mac", "testpmd>", 20)
>          self.vm_dut.send_expect("start", "testpmd>")
>          self.dut.send_expect("clear port stats all", "testpmd> ", 120)
> +        res = self.pmd_out.wait_link_status_up('all', timeout = 15)
> +        self.verify(res is True, 'There has port link is down')
> 
>          self.send_and_verify("vhost queue < virtio queue")
> 
> --
> 2.7.4


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2019-10-22  9:09 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-10-15 23:32 [dts] [PATCH V1] tests/vhost_multi_queue_qemu: add wait_link_status_up before send pkt lihong
2019-10-17  1:55 ` Wang, Yinan
2019-10-22  9:09 ` Tu, Lijuan

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).