aboutsummaryrefslogtreecommitdiffstats
path: root/test/framework.py
diff options
context:
space:
mode:
authorMatej Klotton <mklotton@cisco.com>2016-12-07 15:09:13 +0100
committerDamjan Marion <dmarion.lists@gmail.com>2016-12-09 09:03:19 +0000
commit16a14cdb160160573e2d1ed69a52998cc30ce34f (patch)
treebdef4db8e6c821c771131cae6a83a1073d8176ba /test/framework.py
parent82a06a9335d39068007206ad4946ff0e83aa269d (diff)
make test: FIB add/update/delete - ip4 routes
- JIRA:CSIT-483 Change-Id: Idb4c5bd7a234bc975f3380ece58c0e8d4bfdafd9 Signed-off-by: Matej Klotton <mklotton@cisco.com>
Diffstat (limited to 'test/framework.py')
-rw-r--r--test/framework.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/framework.py b/test/framework.py
index c91f34f9..2618b267 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''):