[V1] tests/TestSuite_qinq_filter:insmod igb_uio create vf
Commit Message
insmod igb_uio create vf
Signed-off-by: xizhan4x <xix.zhang@intel.com>
---
tests/TestSuite_qinq_filter.py | 18 +++++++++++++++++-
1 file changed, 17 insertions(+), 1 deletion(-)
Comments
Tested-by: Zhang, XiX <xix.zhang@intel.com>
Regards,
Zhang, Xi
> -----Original Message-----
> From: Zhang, XiX
> Sent: Thursday, September 24, 2020 5:13 PM
> To: dts@dpdk.org
> Cc: Zhang, XiX <xix.zhang@intel.com>
> Subject: [dts][PATCH V1] tests/TestSuite_qinq_filter:insmod igb_uio create vf
> -----Original Message-----
> From: dts <dts-bounces@dpdk.org> On Behalf Of xizhan4x
> Sent: Thursday, September 24, 2020 5:13 PM
> To: dts@dpdk.org
> Cc: Zhang, XiX <xix.zhang@intel.com>
> Subject: [dts] [PATCH V1] tests/TestSuite_qinq_filter:insmod igb_uio create
> vf
>
> insmod igb_uio create vf
>
> Signed-off-by: xizhan4x <xix.zhang@intel.com>
> ---
> tests/TestSuite_qinq_filter.py | 18 +++++++++++++++++-
> 1 file changed, 17 insertions(+), 1 deletion(-)
>
> diff --git a/tests/TestSuite_qinq_filter.py
> b/tests/TestSuite_qinq_filter.py index 086abc1..a629f0e 100644
> --- a/tests/TestSuite_qinq_filter.py
> +++ b/tests/TestSuite_qinq_filter.py
> @@ -192,11 +192,27 @@ class TestQinqFilter(TestCase):
> self.verify('queue 2: received 1 packets' in out, "out vlan 1,
> inner vlan 4093 received not by queue 2 : %s" % out)
>
> self.dut.send_expect("quit", "#")
> -
> +
> + def insmod_modprobe(self, modename=''):
> + """
> + Insmod modProbe before run test case
> + """
> + if modename == "igb_uio":
> + self.dut.send_expect("modprobe uio", "#", 10)
> + out = self.dut.send_expect("lsmod | grep igb_uio", "#")
> + if "igb_uio" in out:
> + self.dut.send_expect("rmmod -f igb_uio", "#", 10)
> + self.dut.send_expect("insmod ./" + self.target +
> + "/kmod/igb_uio.ko", "#", 10)
> +
> + out = self.dut.send_expect("lsmod | grep igb_uio", "#")
> + assert ("igb_uio" in out), "Failed to insmod igb_uio"
> +
> +
Why it must re-insmod the driver, I think the framework have done the work of insmod before run cases.
Regards,
Ma,lihong
@@ -192,11 +192,27 @@ class TestQinqFilter(TestCase):
self.verify('queue 2: received 1 packets' in out, "out vlan 1, inner vlan 4093 received not by queue 2 : %s" % out)
self.dut.send_expect("quit", "#")
-
+
+ def insmod_modprobe(self, modename=''):
+ """
+ Insmod modProbe before run test case
+ """
+ if modename == "igb_uio":
+ self.dut.send_expect("modprobe uio", "#", 10)
+ out = self.dut.send_expect("lsmod | grep igb_uio", "#")
+ if "igb_uio" in out:
+ self.dut.send_expect("rmmod -f igb_uio", "#", 10)
+ self.dut.send_expect("insmod ./" + self.target + "/kmod/igb_uio.ko", "#", 10)
+
+ out = self.dut.send_expect("lsmod | grep igb_uio", "#")
+ assert ("igb_uio" in out), "Failed to insmod igb_uio"
+
+
def test_qinq_packet_filter_VF_queues(self):
"""
qinq filter packet received by assign VF queues
"""
+ self.insmod_modprobe("igb_uio")
self.config_vfs(dutRxPortId, 2)
vf_list = self.dut.ports_info[dutRxPortId]['sriov_vfs_pci']
self.verify(len(vf_list) == 2, 'config 2 vf failed: %s' % str(vf_list))