test suite reviews and discussions
 help / color / mirror / Atom feed
* [dts] [PATCH V1] tests/TestSuite_qinq_filter.py:fix qinq_packet_filter_VF_queues vfiopci failed
@ 2018-02-12  7:33 zhu,shuai
  2018-02-13  5:15 ` Liu, Yong
  0 siblings, 1 reply; 2+ messages in thread
From: zhu,shuai @ 2018-02-12  7:33 UTC (permalink / raw)
  To: dts; +Cc: zhu,shuai

diff --git a/tests/TestSuite_qinq_filter.py b/tests/TestSuite_qinq_filter.py
index 3f9c1ac..01b3b96 100644
--- a/tests/TestSuite_qinq_filter.py
+++ b/tests/TestSuite_qinq_filter.py
@@ -121,17 +121,31 @@ class TestQinqFilter(TestCase):
             fw.write(word)
         fw.close()
 
+    def install_igb_uio(self):
+        self.dut.send_expect("modprobe uio", "#", 70)
+        out = self.dut.send_expect("lsmod | grep igb_uio", "#")
+        if "igb_uio" in out:
+            self.dut.send_expect("rmmod -f igb_uio", "#", 70)
+        self.dut.send_expect("insmod ./" + self.target + "/kmod/igb_uio.ko", "#", 60)
+
+        out = self.dut.send_expect("lsmod | grep igb_uio", "#")
+        assert ("igb_uio" in out), "Failed to insmod igb_uio"
+
+
     def config_vfs(self, port_id, vfs):
         """
         if vfs is 0, call destroy_sriov_vfs_by_port in dut for destory vf.
         if vfs > 0, call generate_sriov_vfs_by_port generate vf and bind igb_uio to vf
         """
         if vfs:
+            self.install_igb_uio()
             self.dut.generate_sriov_vfs_by_port(port_id, vfs, 'igb_uio')
             for port in self.dut.ports_info[port_id]['vfs_port']:
-                port.bind_driver('igb_uio')
+               # port.bind_driver('igb_uio')
+                port.bind_driver(self.drivername)
         else:
             self.dut.destroy_sriov_vfs_by_port(port_id)
+            self.dut.ports_info[port_id]['port'].bind_driver(self.drivername)
         
         
     def set_up(self):
-- 
1.9.3

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

* Re: [dts] [PATCH V1] tests/TestSuite_qinq_filter.py:fix qinq_packet_filter_VF_queues vfiopci failed
  2018-02-12  7:33 [dts] [PATCH V1] tests/TestSuite_qinq_filter.py:fix qinq_packet_filter_VF_queues vfiopci failed zhu,shuai
@ 2018-02-13  5:15 ` Liu, Yong
  0 siblings, 0 replies; 2+ messages in thread
From: Liu, Yong @ 2018-02-13  5:15 UTC (permalink / raw)
  To: Zhu, ShuaiX, dts; +Cc: Zhu, ShuaiX

Shuai,
DTS framework will guarantee that self.drivername has been insmoded. There's no need to install it in the suite.

Thanks,
Marvin

> -----Original Message-----
> From: dts [mailto:dts-bounces@dpdk.org] On Behalf Of zhu,shuai
> Sent: Monday, February 12, 2018 3:33 PM
> To: dts@dpdk.org
> Cc: Zhu, ShuaiX <shuaix.zhu@intel.com>
> Subject: [dts] [PATCH V1] tests/TestSuite_qinq_filter.py:fix
> qinq_packet_filter_VF_queues vfiopci failed
> 
> diff --git a/tests/TestSuite_qinq_filter.py
> b/tests/TestSuite_qinq_filter.py
> index 3f9c1ac..01b3b96 100644
> --- a/tests/TestSuite_qinq_filter.py
> +++ b/tests/TestSuite_qinq_filter.py
> @@ -121,17 +121,31 @@ class TestQinqFilter(TestCase):
>              fw.write(word)
>          fw.close()
> 
> +    def install_igb_uio(self):
> +        self.dut.send_expect("modprobe uio", "#", 70)
> +        out = self.dut.send_expect("lsmod | grep igb_uio", "#")
> +        if "igb_uio" in out:
> +            self.dut.send_expect("rmmod -f igb_uio", "#", 70)
> +        self.dut.send_expect("insmod ./" + self.target +
> "/kmod/igb_uio.ko", "#", 60)
> +
> +        out = self.dut.send_expect("lsmod | grep igb_uio", "#")
> +        assert ("igb_uio" in out), "Failed to insmod igb_uio"
> +
> +
>      def config_vfs(self, port_id, vfs):
>          """
>          if vfs is 0, call destroy_sriov_vfs_by_port in dut for destory vf.
>          if vfs > 0, call generate_sriov_vfs_by_port generate vf and bind
> igb_uio to vf
>          """
>          if vfs:
> +            self.install_igb_uio()
>              self.dut.generate_sriov_vfs_by_port(port_id, vfs, 'igb_uio')
>              for port in self.dut.ports_info[port_id]['vfs_port']:
> -                port.bind_driver('igb_uio')
> +               # port.bind_driver('igb_uio')

Since this line is useless, please remove it.

> +                port.bind_driver(self.drivername)
>          else:
>              self.dut.destroy_sriov_vfs_by_port(port_id)
> +
> self.dut.ports_info[port_id]['port'].bind_driver(self.drivername)
> 
> 
>      def set_up(self):
> --
> 1.9.3

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

end of thread, other threads:[~2018-02-13  5:15 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-02-12  7:33 [dts] [PATCH V1] tests/TestSuite_qinq_filter.py:fix qinq_packet_filter_VF_queues vfiopci failed zhu,shuai
2018-02-13  5:15 ` Liu, Yong

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