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/framework.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'test/framework.py') diff --git a/test/framework.py b/test/framework.py index 6ff03d8b073..fc22ad6483c 100644 --- a/test/framework.py +++ b/test/framework.py @@ -71,6 +71,9 @@ class _PacketInfo(object): #: Store the copy of the former packet. data = None + def __repr__(self): + return f"_PacketInfo index:{self.index} src:{self.src} dst:{self.dst} ip:{self.ip} proto:{self.proto} data:{self.data}" + def __eq__(self, other): index = self.index == other.index src = self.src == other.src -- cgit 1.2.3-korg