From cf9356d642ce131c6562fcd281c01e51af888ec3 Mon Sep 17 00:00:00 2001 From: Dave Wallace Date: Tue, 23 Jul 2024 01:28:19 -0400 Subject: tests: update scapy to version 2.4.5 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 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 Signed-off-by: Dave Wallace --- test/test_ip4.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/test_ip4.py') diff --git a/test/test_ip4.py b/test/test_ip4.py index f4b428df4d3..150ea629308 100644 --- a/test/test_ip4.py +++ b/test/test_ip4.py @@ -1456,7 +1456,7 @@ class TestIPLoadBalance(VppTestCase): src_pkts.append( ( Ether(src=self.pg0.remote_mac, dst=self.pg0.local_mac) - / IP(dst="1.1.1.1", src="20.0.0.%d" % ii) + / IP(dst="1.1.1.1", src="20.0.0.%d" % (ii % 256)) / UDP(sport=1234, dport=1234) / Raw(b"\xa5" * 100) ) -- cgit 1.2.3-korg