tests: update scapy to version 2.4.5
- Required for Ubuntu 24.04 LTS jobs - temporarily disable TestIpsecEsp1 and TestIpsecAhAll tests until a patch can be added to fix them Type: test Change-Id: I1ae7b170117182c3252629bbbb770775e2c496c9 Signed-off-by: Benoît Ganne <bganne@cisco.com> Signed-off-by: Dave Wallace <dwallacelf@gmail.com>
This commit is contained in:

committed by
Beno�t Ganne

parent
0a3b0b231d
commit
cf9356d642
@ -83,7 +83,7 @@ class TestPgTun(VppTestCase):
|
||||
|
||||
rxs = self.send_and_expect(self.pg0, p * N_PKTS, self.pg1)
|
||||
for rx in rxs:
|
||||
rx = IP(rx)
|
||||
rx = IP(bytes(rx))
|
||||
self.assertFalse(rx.haslayer(Ether))
|
||||
self.assertEqual(rx[IP].dst, self.pg1.remote_ip4)
|
||||
|
||||
@ -97,7 +97,7 @@ class TestPgTun(VppTestCase):
|
||||
|
||||
rxs = self.send_and_expect(self.pg0, p * N_PKTS, self.pg2)
|
||||
for rx in rxs:
|
||||
rx = IPv6(rx)
|
||||
rx = IPv6(bytes(rx))
|
||||
self.assertFalse(rx.haslayer(Ether))
|
||||
self.assertEqual(rx[IPv6].dst, self.pg2.remote_ip6)
|
||||
|
||||
|
Reference in New Issue
Block a user