* [dts] [PATCH V1] tests/vhost_virtio_user_interrupt: add 2 packed ring cdbma testcase
@ 2021-04-02 9:37 Ling Wei
2021-04-02 9:39 ` Ling, WeiX
2021-04-07 6:57 ` Tu, Lijuan
0 siblings, 2 replies; 4+ messages in thread
From: Ling Wei @ 2021-04-02 9:37 UTC (permalink / raw)
To: dts; +Cc: Ling Wei
Add 2 packed ring cdbma testcase 9 and 10 sync with testplan.
Signed-off-by: Ling Wei <weix.ling@intel.com>
---
.../TestSuite_vhost_virtio_user_interrupt.py | 42 ++++++++++++++++++-
1 file changed, 40 insertions(+), 2 deletions(-)
diff --git a/tests/TestSuite_vhost_virtio_user_interrupt.py b/tests/TestSuite_vhost_virtio_user_interrupt.py
index 04c86769..1c4a5a98 100644
--- a/tests/TestSuite_vhost_virtio_user_interrupt.py
+++ b/tests/TestSuite_vhost_virtio_user_interrupt.py
@@ -103,7 +103,10 @@ class TestVirtioUserInterrupt(TestCase):
def launch_l3fwd(self, path, packed=False):
self.core_interrupt = self.core_list_l3fwd[0]
example_para = "./%s " % self.app_l3fwd_power_path
- vdev = "virtio_user0,path=%s,cq=1" % path if not packed else "virtio_user0,path=%s,cq=1,packed_vq=1" % path
+ if not packed:
+ vdev = "virtio_user0,path=%s,cq=1" % path
+ else:
+ vdev = "virtio_user0,path=%s,cq=1,packed_vq=1" % path
eal_params = self.dut.create_eal_parameters(cores=self.core_list_l3fwd, prefix='l3fwd-pwd', no_pci=True, vdevs=[vdev])
if self.check_2M_env:
eal_params += " --single-file-segments"
@@ -152,7 +155,10 @@ class TestVirtioUserInterrupt(TestCase):
start testpmd on virtio side
"""
testcmd = self.app_testpmd_path + " "
- vdev = "net_virtio_user0,mac=00:01:02:03:04:05,path=./vhost-net" if not packed else "net_virtio_user0,mac=00:01:02:03:04:05,path=./vhost-net,packed_vq=1"
+ if not packed:
+ vdev = "net_virtio_user0,mac=00:01:02:03:04:05,path=./vhost-net"
+ else:
+ vdev = "net_virtio_user0,mac=00:01:02:03:04:05,path=./vhost-net,packed_vq=1"
eal_params = self.dut.create_eal_parameters(cores=self.core_list_l3fwd, prefix='virtio', no_pci=True, vdevs=[vdev])
para = " -- -i --txd=512 --rxd=128 --tx-offloads=0x00"
cmd_virtio_user = testcmd + eal_params + para
@@ -342,6 +348,38 @@ class TestVirtioUserInterrupt(TestCase):
self.dut.send_expect("killall -s INT %s" % self.testpmd_name, "#")
self.close_all_session()
+ def test_lsc_event_between_vhost_user_and_virtio_user_with_packed_ring_and_cbdma_enabled(self):
+ """
+ Test Case9: LSC event between vhost-user and virtio-user with packed ring and cbdma enabled
+ """
+ self.get_cbdma_ports_info_and_bind_to_dpdk(1)
+ self.start_vhost_testpmd(pci=self.used_cbdma, dmas=self.dmas_info)
+ self.start_virtio_user(packed=True)
+ self.check_virtio_side_link_status("up")
+ self.vhost.send_expect("quit", "#", 20)
+ self.check_virtio_side_link_status("down")
+ 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 test_packed_ring_virtio_user_interrupt_test_with_vhost_user_as_backend_and_cbdma_enabled(self):
+ """
+ Test Case10: Packed ring virtio-user interrupt test with vhost-user as backend and cbdma enabled
+ """
+ self.get_cbdma_ports_info_and_bind_to_dpdk(1)
+ self.start_vhost_testpmd(pci="", dmas=self.dmas_info)
+ self.launch_l3fwd(path="./vhost-net", packed=True)
+ # double check the status of interrupt core
+ for i in range(2):
+ self.tester.scapy_append('pk=[Ether(dst="52:54:00:00:00:01")/IP()/("X"*64)]')
+ self.tester.scapy_append('sendp(pk, iface="%s", count=100)' % self.tx_interface)
+ self.tester.scapy_execute()
+ time.sleep(3)
+ self.check_interrupt_log(status="waked up")
+ 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(self):
"""
run after each test case.
--
2.25.1
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [dts] [PATCH V1] tests/vhost_virtio_user_interrupt: add 2 packed ring cdbma testcase
2021-04-02 9:37 [dts] [PATCH V1] tests/vhost_virtio_user_interrupt: add 2 packed ring cdbma testcase Ling Wei
@ 2021-04-02 9:39 ` Ling, WeiX
2021-04-12 2:50 ` Wang, Yinan
2021-04-07 6:57 ` Tu, Lijuan
1 sibling, 1 reply; 4+ messages in thread
From: Ling, WeiX @ 2021-04-02 9:39 UTC (permalink / raw)
To: dts
[-- Attachment #1: Type: text/plain, Size: 318 bytes --]
> -----Original Message-----
> From: Ling, WeiX <weix.ling@intel.com>
> Sent: Friday, April 2, 2021 05:37 PM
> To: dts@dpdk.org
> Cc: Ling, WeiX <weix.ling@intel.com>
> Subject: [dts][PATCH V1] tests/vhost_virtio_user_interrupt: add 2 packed
> ring cdbma testcase
>
Tested-by: Wei Ling <weix.ling@intel.com>
[-- Attachment #2: TestVirtioUserInterrupt.log --]
[-- Type: application/octet-stream, Size: 44917 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [dts] [PATCH V1] tests/vhost_virtio_user_interrupt: add 2 packed ring cdbma testcase
2021-04-02 9:37 [dts] [PATCH V1] tests/vhost_virtio_user_interrupt: add 2 packed ring cdbma testcase Ling Wei
2021-04-02 9:39 ` Ling, WeiX
@ 2021-04-07 6:57 ` Tu, Lijuan
1 sibling, 0 replies; 4+ messages in thread
From: Tu, Lijuan @ 2021-04-07 6:57 UTC (permalink / raw)
To: Ling, WeiX, dts; +Cc: Ling, WeiX
> Add 2 packed ring cdbma testcase 9 and 10 sync with testplan.
>
> Signed-off-by: Ling Wei <weix.ling@intel.com
Applied
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [dts] [PATCH V1] tests/vhost_virtio_user_interrupt: add 2 packed ring cdbma testcase
2021-04-02 9:39 ` Ling, WeiX
@ 2021-04-12 2:50 ` Wang, Yinan
0 siblings, 0 replies; 4+ 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? 17:39
> To: dts@dpdk.org
> Subject: Re: [dts] [PATCH V1] tests/vhost_virtio_user_interrupt: add 2
> packed ring cdbma testcase
>
> > -----Original Message-----
> > From: Ling, WeiX <weix.ling@intel.com>
> > Sent: Friday, April 2, 2021 05:37 PM
> > To: dts@dpdk.org
> > Cc: Ling, WeiX <weix.ling@intel.com>
> > Subject: [dts][PATCH V1] tests/vhost_virtio_user_interrupt: add 2 packed
> > ring cdbma testcase
> >
> Tested-by: Wei Ling <weix.ling@intel.com>
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2021-04-12 2:50 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-04-02 9:37 [dts] [PATCH V1] tests/vhost_virtio_user_interrupt: add 2 packed ring cdbma testcase Ling Wei
2021-04-02 9:39 ` Ling, WeiX
2021-04-12 2:50 ` Wang, Yinan
2021-04-07 6:57 ` 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).