* [dts] [PATCH V1] tests/vhost_user_interrupt: add 1 packed ring cbdma testcase sync with testplan
@ 2021-04-02 7:34 Ling Wei
2021-04-02 7:37 ` Ling, WeiX
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: Ling Wei @ 2021-04-02 7:34 UTC (permalink / raw)
To: dts; +Cc: Ling Wei
Add 1 packed ring cbdma testcase 6 sync with testplan.
Signed-off-by: Ling Wei <weix.ling@intel.com>
---
tests/TestSuite_vhost_user_interrupt.py | 21 ++++++++++++++++-----
1 file changed, 16 insertions(+), 5 deletions(-)
diff --git a/tests/TestSuite_vhost_user_interrupt.py b/tests/TestSuite_vhost_user_interrupt.py
index 296d2283..9a7d8479 100644
--- a/tests/TestSuite_vhost_user_interrupt.py
+++ b/tests/TestSuite_vhost_user_interrupt.py
@@ -225,7 +225,7 @@ class TestVhostUserInterrupt(TestCase):
def test_wake_up_split_ring_vhost_user_core_with_l3fwd_power_sample(self):
"""
- Check the virtio-user interrupt can work when use vhost-net as backend
+ Test Case1: Wake up split ring vhost-user core with l3fwd-power sample
"""
self.queues = 1
self.get_core_list()
@@ -236,7 +236,7 @@ class TestVhostUserInterrupt(TestCase):
def test_wake_up_split_ring_vhost_user_core_with_l3fwd_power_sample_when_multi_queues_enabled(self):
"""
- Check the virtio-user interrupt can work with multi queue
+ Test Case2: Wake up split ring vhost-user cores with l3fwd-power sample when multi queues are enabled
"""
self.queues = 4
self.get_core_list()
@@ -247,7 +247,7 @@ class TestVhostUserInterrupt(TestCase):
def test_wake_up_packed_ring_vhost_user_core_with_l3fwd_power_sample(self):
"""
- Check the virtio-user interrupt can work when use vhost-net as backend
+ Test Case3: Wake up packed ring vhost-user core with l3fwd-power sample
"""
self.queues = 1
self.get_core_list()
@@ -258,7 +258,7 @@ class TestVhostUserInterrupt(TestCase):
def test_wake_up_packed_ring_vhost_user_core_with_l3fwd_power_sample_when_multi_queues_enabled(self):
"""
- Check the virtio-user interrupt can work with multi queue
+ Test Case4: Wake up packed ring vhost-user cores with l3fwd-power sample when multi queues are enabled
"""
self.queues = 4
self.get_core_list()
@@ -269,7 +269,7 @@ class TestVhostUserInterrupt(TestCase):
def test_wake_up_split_ring_vhost_user_core_with_l3fwd_power_sample_when_multi_queues_enabled_and_cbdma_enabled(self):
"""
- Check the virtio-user interrupt can work with multi queue and cbdma_enabled
+ Test Case5: Wake up split ring vhost-user cores with l3fwd-power sample when multi queues and cbdma are enabled
"""
self.queues = 4
self.get_core_list()
@@ -278,6 +278,17 @@ class TestVhostUserInterrupt(TestCase):
self.virtio_user.send_expect("set fwd txonly", "testpmd> ", 20)
self.send_and_verify()
+ def test_wake_up_split_ring_vhost_user_core_with_l3fwd_power_sample_when_multi_queues_enabled_and_cbdma_enabled(self):
+ """
+ Test Case6: Wake up packed ring vhost-user cores with l3fwd-power sample when multi queues and cbdma are enabled
+ """
+ self.queues = 4
+ self.get_core_list()
+ self.lanuch_virtio_user(packed=True, cbdma=True)
+ self.lanuch_l3fwd_power(cbdma=True)
+ self.virtio_user.send_expect("set fwd txonly", "testpmd> ", 20)
+ self.send_and_verify()
+
def tear_down(self):
"""
Run after each test case.
--
2.25.1
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [dts] [PATCH V1] tests/vhost_user_interrupt: add 1 packed ring cbdma testcase sync with testplan
2021-04-02 7:34 [dts] [PATCH V1] tests/vhost_user_interrupt: add 1 packed ring cbdma testcase sync with testplan Ling Wei
@ 2021-04-02 7:37 ` Ling, WeiX
2021-04-12 2:50 ` Wang, Yinan
2021-04-07 1:46 ` Tu, Lijuan
2021-04-07 1:47 ` Tu, Lijuan
2 siblings, 1 reply; 5+ messages in thread
From: Ling, WeiX @ 2021-04-02 7:37 UTC (permalink / raw)
To: dts
[-- Attachment #1: Type: text/plain, Size: 330 bytes --]
> -----Original Message-----
> From: Ling, WeiX <weix.ling@intel.com>
> Sent: Friday, April 2, 2021 03:35 PM
> To: dts@dpdk.org
> Cc: Ling, WeiX <weix.ling@intel.com>
> Subject: [dts][PATCH V1] tests/vhost_user_interrupt: add 1 packed ring
> cbdma testcase sync with testplan
>
Tested-by: Wei Ling <weix.ling@intel.com>
[-- Attachment #2: TestVhostUserInterrupt.log --]
[-- Type: application/octet-stream, Size: 37363 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [dts] [PATCH V1] tests/vhost_user_interrupt: add 1 packed ring cbdma testcase sync with testplan
2021-04-02 7:34 [dts] [PATCH V1] tests/vhost_user_interrupt: add 1 packed ring cbdma testcase sync with testplan Ling Wei
2021-04-02 7:37 ` Ling, WeiX
@ 2021-04-07 1:46 ` Tu, Lijuan
2021-04-07 1:47 ` Tu, Lijuan
2 siblings, 0 replies; 5+ messages in thread
From: Tu, Lijuan @ 2021-04-07 1:46 UTC (permalink / raw)
To: Ling, WeiX, dts; +Cc: Ling, WeiX
> Add 1 packed ring cbdma testcase 6 sync with testplan.
>
> Signed-off-by: Ling Wei <weix.ling@intel.com>
Applied, thanks
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [dts] [PATCH V1] tests/vhost_user_interrupt: add 1 packed ring cbdma testcase sync with testplan
2021-04-02 7:34 [dts] [PATCH V1] tests/vhost_user_interrupt: add 1 packed ring cbdma testcase sync with testplan Ling Wei
2021-04-02 7:37 ` Ling, WeiX
2021-04-07 1:46 ` Tu, Lijuan
@ 2021-04-07 1:47 ` Tu, Lijuan
2 siblings, 0 replies; 5+ messages in thread
From: Tu, Lijuan @ 2021-04-07 1:47 UTC (permalink / raw)
To: Ling, WeiX, dts; +Cc: Ling, WeiX
> Add 1 packed ring cbdma testcase 6 sync with testplan.
>
> Signed-off-by: Ling Wei <weix.ling@intel.com>
Applied
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [dts] [PATCH V1] tests/vhost_user_interrupt: add 1 packed ring cbdma testcase sync with testplan
2021-04-02 7:37 ` Ling, WeiX
@ 2021-04-12 2:50 ` Wang, Yinan
0 siblings, 0 replies; 5+ messages in thread
From: Wang, Yinan @ 2021-04-12 2:50 UTC (permalink / raw)
To: Ling, WeiX, dts
Acked-by: Wang, Yinan <yinan.wang@intel.com>
> -----Original Message-----
> From: dts <dts-bounces@dpdk.org> On Behalf Of Ling, WeiX
> Sent: 2021?4?2? 15:37
> To: dts@dpdk.org
> Subject: Re: [dts] [PATCH V1] tests/vhost_user_interrupt: add 1 packed ring
> cbdma testcase sync with testplan
>
> > -----Original Message-----
> > From: Ling, WeiX <weix.ling@intel.com>
> > Sent: Friday, April 2, 2021 03:35 PM
> > To: dts@dpdk.org
> > Cc: Ling, WeiX <weix.ling@intel.com>
> > Subject: [dts][PATCH V1] tests/vhost_user_interrupt: add 1 packed ring
> > cbdma testcase sync with testplan
> >
> Tested-by: Wei Ling <weix.ling@intel.com>
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2021-04-12 2:50 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-04-02 7:34 [dts] [PATCH V1] tests/vhost_user_interrupt: add 1 packed ring cbdma testcase sync with testplan Ling Wei
2021-04-02 7:37 ` Ling, WeiX
2021-04-12 2:50 ` Wang, Yinan
2021-04-07 1:46 ` Tu, Lijuan
2021-04-07 1:47 ` Tu, Lijuan
test suite reviews and discussions
This inbox may be cloned and mirrored by anyone:
git clone --mirror http://inbox.dpdk.org/dts/0 dts/git/0.git
# If you have public-inbox 1.1+ installed, you may
# initialize and index your mirror using the following commands:
public-inbox-init -V2 dts dts/ http://inbox.dpdk.org/dts \
dts@dpdk.org
public-inbox-index dts
Example config snippet for mirrors.
Newsgroup available over NNTP:
nntp://inbox.dpdk.org/inbox.dpdk.dts
AGPL code for this site: git clone https://public-inbox.org/public-inbox.git