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

Tu, Lijuan lijuan.tu at intel.com
Fri Dec 27 09:13:56 CET 2019


Applied some days ago.

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



More information about the dts mailing list