[dts] [PATCH V1] tests/TestSuite_vf_interrupt_pmd:Optimize scripts to improve stability

Zhu, WenhuiX wenhuix.zhu at intel.com
Wed Nov 13 09:40:57 CET 2019


Tested-by: Zhu, WenhuiX <wenhuix.zhu at intel.com>

-----Original Message-----
From: dts [mailto:dts-bounces at dpdk.org] On Behalf Of zhang,yan
Sent: Wednesday, November 13, 2019 4:45 PM
To: dts at dpdk.org
Cc: Zhang, YanX A <yanx.a.zhang at intel.com>
Subject: [dts] [PATCH V1] tests/TestSuite_vf_interrupt_pmd:Optimize scripts to improve stability

Optimize scripts to improve stability.

Signed-off-by: zhang,yan <yanx.a.zhang at intel.com>
---
 tests/TestSuite_vf_interrupt_pmd.py | 13 +++++++++----
 1 file changed, 9 insertions(+), 4 deletions(-)

diff --git a/tests/TestSuite_vf_interrupt_pmd.py b/tests/TestSuite_vf_interrupt_pmd.py
index 0b1f858..eaeaccd 100644
--- a/tests/TestSuite_vf_interrupt_pmd.py
+++ b/tests/TestSuite_vf_interrupt_pmd.py
@@ -212,18 +212,23 @@ class TestVfInterruptPmd(TestCase):
 
         self.VF0_bind_vfio_pci()
 
+        cores = "1S/1C/1T"
+        core_list = self.vm0_dut.get_core_list(cores)
+        core_user = core_list[0]
+        core_mask_user = utils.create_mask(core_list)
+
         cmd = self.path + \
-              " -l 1-3 -n %d -- -P  -p 0x01 --config='(0,0,2)'" % (
-                  self.vm0_dut.get_memory_channels())
+              " -c %s -n %d -- -P  -p 0x01 --config='(0,0,%s)'" % (
+                  core_mask_user, self.vm0_dut.get_memory_channels(), core_user)
         self.vm0_dut.send_expect(cmd, "L3FWD_POWER", 60)
         time.sleep(1)
         self.send_packet(self.vf0_mac, self.rx_intf_0, self.vm0_dut)
         self.destroy_vm_env()
 
         self.verify(
-            "lcore 2 is waked up from rx interrupt on port 0" in self.out2, "Wake up failed")
+            "lcore %s is waked up from rx interrupt on port 0" % core_user in self.out2, "Wake up failed")
         self.verify(
-            "lcore 2 sleeps until interrupt triggers"  in self.out2, "lcore 2 not sleeps")
+            "lcore %s sleeps until interrupt triggers" % core_user in self.out2, "lcore %s not sleeps" % core_user)
 
     def test_nic_interrupt_VF_vfio_pci(self, driver='default'):
         """
-- 
2.17.2

-------------- next part --------------
A non-text attachment was scrubbed...
Name: TestVfInterruptPmd_fortvill_spirit.log
Type: application/octet-stream
Size: 96658 bytes
Desc: TestVfInterruptPmd_fortvill_spirit.log
URL: <http://mails.dpdk.org/archives/dts/attachments/20191113/ecbb6a0a/attachment.obj>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: TestVfInterruptPmd_fortpark.log
Type: application/octet-stream
Size: 96582 bytes
Desc: TestVfInterruptPmd_fortpark.log
URL: <http://mails.dpdk.org/archives/dts/attachments/20191113/ecbb6a0a/attachment-0001.obj>


More information about the dts mailing list