diff options
Diffstat (limited to 'test/framework.py')
-rw-r--r-- | test/framework.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/framework.py b/test/framework.py index c91f34f973e..2618b267706 100644 --- a/test/framework.py +++ b/test/framework.py @@ -40,6 +40,13 @@ class _PacketInfo(object): #: Store the copy of the former packet. data = None + def __eq__(self, other): + index = self.index == other.index + src = self.src == other.src + dst = self.dst == other.dst + data = self.data == other.data + return index and src and dst and data + def pump_output(out, deque): for line in iter(out.readline, b''): |