* [dts] [PATCH V2 2/2] tests/TestSuite_kernelpf_iavf:modify script to fit new I40E driver
2020-11-03 8:44 [dts] [PATCH V2 1/2] tests/TestSuite_vf_vlan:modify script to fit new I40E driver Xie wei
@ 2020-11-03 8:44 ` Xie wei
2020-11-03 9:03 ` Xie, WeiX
2020-11-03 9:02 ` [dts] [PATCH V2 1/2] tests/TestSuite_vf_vlan:modify " Xie, WeiX
2020-11-11 2:45 ` Tu, Lijuan
2 siblings, 1 reply; 5+ messages in thread
From: Xie wei @ 2020-11-03 8:44 UTC (permalink / raw)
To: dts; +Cc: Xie wei
Update i40e driver to 2.13.10,
vf_add_pvid: remove vlan, the pkts with random vlan id 1-4095 shall not be received.
vf_vlan_rx: remove vlan, the pkts with vlan 1 shall not be received.
vf_vlan_strip: disable strip, the pkts with random vlan tag shall not be received.
vf_vlan_filter: disable filter, the pkts with random vlan tag shall not be received.
vf_vlan_promisc: disable filter and strip, the pkts with random vlan tag shall not be received.
Signed-off-by: Xie wei <weix.xie@intel.com>
---
tests/TestSuite_kernelpf_iavf.py | 28 ++++++++++++++++++++++------
1 file changed, 22 insertions(+), 6 deletions(-)
diff --git a/tests/TestSuite_kernelpf_iavf.py b/tests/TestSuite_kernelpf_iavf.py
index da925109..adeac42f 100644
--- a/tests/TestSuite_kernelpf_iavf.py
+++ b/tests/TestSuite_kernelpf_iavf.py
@@ -428,8 +428,12 @@ class TestKernelpfIavf(TestCase):
out = self.send_and_getout(vlan=random_vlan, pkt_type="VLAN_UDP")
tcpdump_out = self.get_tcpdump_package()
receive_pkt = re.findall('vlan %s' % random_vlan, tcpdump_out)
- self.verify(len(receive_pkt) == 2, "fail to tester received vlan packet!!!")
- self.verify(self.vf_mac in out, "Failed to received vlan packet!!!")
+ if self.kdriver == 'ice':
+ self.verify(len(receive_pkt) == 2, "fail to tester received vlan packet!!!")
+ self.verify(self.vf_mac in out, "Failed to received vlan packet!!!")
+ else:
+ self.verify(len(receive_pkt) == 1, "fail to tester received vlan packet!!!")
+ self.verify(self.vf_mac not in out, "Received vlan packet!!!")
def send_and_getout(self, vlan=0, pkt_type="UDP"):
@@ -493,7 +497,10 @@ class TestKernelpfIavf(TestCase):
# send vlan 1 packet, vf can receive packet
out = self.send_and_getout(vlan=1, pkt_type="VLAN_UDP")
- self.verify(self.vf_mac in out, "received vlan 1 packet!!!")
+ if self.kdriver == 'ice':
+ self.verify(self.vf_mac in out, "Not received vlan 1 packet!!!")
+ else:
+ self.verify(self.vf_mac not in out, "Received vlan 1 packet!!!")
def test_vf_vlan_insertion(self):
self.vm_testpmd.start_testpmd("all")
@@ -538,7 +545,10 @@ class TestKernelpfIavf(TestCase):
self.send_and_getout(vlan=random_vlan, pkt_type="VLAN_UDP")
tcpdump_out = self.get_tcpdump_package()
receive_pkt = re.findall('vlan %s' % random_vlan, tcpdump_out)
- self.verify(len(receive_pkt) == 2, 'Failed to not received vlan packet!!!')
+ if self.kdriver == 'ice':
+ self.verify(len(receive_pkt) == 2, 'Failed to not received vlan packet!!!')
+ else:
+ self.verify(len(receive_pkt) == 1, 'Failed to not received vlan packet!!!')
def test_vf_vlan_filter(self):
random_vlan = random.randint(2, MAX_VLAN)
@@ -572,7 +582,10 @@ class TestKernelpfIavf(TestCase):
time.sleep(1)
tcpdump_out = self.get_tcpdump_package()
receive_pkt = re.findall('vlan %s' % random_vlan, tcpdump_out)
- self.verify(len(receive_pkt) == 2, 'Failed to received vlan packet!!!')
+ if self.kdriver == 'ice':
+ self.verify(len(receive_pkt) == 2, 'Failed to received vlan packet!!!')
+ else:
+ self.verify(len(receive_pkt) == 1, 'Failed to received vlan packet!!!')
def test_vf_without_jumboframe(self):
self.tester.send_expect('ifconfig %s mtu %s' % (self.tester_intf, ETHER_JUMBO_FRAME_MTU), '#')
@@ -923,7 +936,10 @@ class TestKernelpfIavf(TestCase):
self.scapy_send_packet(self.vf_mac, self.tester_intf, vlan_flags=True, count=10)
out = self.vm_dut.get_session_output()
packets = len(re.findall('received 1 packets', out))
- self.verify(packets == 10, "Not receive expected packet")
+ if self.kdriver == 'ice':
+ self.verify(packets == 10, "Not receive expected packet")
+ else:
+ self.verify(packets == 0, "Receive expected packet")
# send 10 untagged packets, and check 10 untagged packets received
self.scapy_send_packet(self.vf_mac, self.tester_intf, count=10)
--
2.17.1
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [dts] [PATCH V2 1/2] tests/TestSuite_vf_vlan:modify script to fit new I40E driver
2020-11-03 8:44 [dts] [PATCH V2 1/2] tests/TestSuite_vf_vlan:modify script to fit new I40E driver Xie wei
2020-11-03 8:44 ` [dts] [PATCH V2 2/2] tests/TestSuite_kernelpf_iavf:modify " Xie wei
2020-11-03 9:02 ` [dts] [PATCH V2 1/2] tests/TestSuite_vf_vlan:modify " Xie, WeiX
@ 2020-11-11 2:45 ` Tu, Lijuan
2 siblings, 0 replies; 5+ messages in thread
From: Tu, Lijuan @ 2020-11-11 2:45 UTC (permalink / raw)
To: Xie, WeiX, dts; +Cc: Xie, WeiX
> Update i40e driver to 2.13.10,
> vf_vlan_rx: while vlan set filter on, the pkts with random vlan id 1-4095 shall not
> be received.
> add_pvid_vf: while ip link set pf_intf vf 0 vlan 0, the pkts with random vlan id 1-
> 4095 shall not be received.
>
> Signed-off-by: Xie wei <weix.xie@intel.com>
Snice VF behavior is based on PF driver, so get driver version first, then check VF behavior.
As far as I understand, if i40e driver is lower than 2.13.10, the result will be failed, even if it is an expected behavior.
^ permalink raw reply [flat|nested] 5+ messages in thread