diff options
author | Tetsuya Murakami <tetsuya.mrk@gmail.com> | 2019-12-04 18:57:46 -0800 |
---|---|---|
committer | Ole Trøan <otroan@employees.org> | 2019-12-05 15:11:03 +0000 |
commit | 70d8ef89a5d9e38d4f35517c0f64009c47b76c4d (patch) | |
tree | 4dbd294a57d34dd82d755ae465847f5ede7244d7 /src/plugins/srv6-mobile/test | |
parent | 66cea092c7a584bb7b82000fbfad349e6f0af7e1 (diff) |
srv6-mobile
Type: feature
Plug-in for IPv6 Segment Routing Mobile
Support the plug-in function in SR Policy.
Support GTP4.D plug-in as SR Policy plug-in.
Signed-off-by: Tetsuya Murakami <tetsuya.mrk@gmail.com>
Change-Id: I306160b7203921d879940193868944158867c482
Diffstat (limited to 'src/plugins/srv6-mobile/test')
-rw-r--r-- | src/plugins/srv6-mobile/test/test_srv6_end.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/plugins/srv6-mobile/test/test_srv6_end.py b/src/plugins/srv6-mobile/test/test_srv6_end.py index 4e2a5765bab..9eb62c9ce33 100644 --- a/src/plugins/srv6-mobile/test/test_srv6_end.py +++ b/src/plugins/srv6-mobile/test/test_srv6_end.py @@ -59,8 +59,7 @@ class TestSRv6EndMGTP4E(VppTestCase): IPv6ExtHdrSegmentRouting() / IPv6(dst=d, src=s) / UDP(sport=1000, dport=23)) - - self.logger.info(pkt.show2()) + self.logger.info(pkt.show2(dump=True)) pkts.append(pkt) return pkts @@ -86,7 +85,7 @@ class TestSRv6EndMGTP4E(VppTestCase): capture = self.pg1.get_capture(len(pkts)) for pkt in capture: - self.logger.info(pkt.show2()) + self.logger.info(pkt.show2(dump=True)) self.assertEqual(pkt[IP].dst, self.ip4_dst) self.assertEqual(pkt[IP].src, self.ip4_src) self.assertEqual(pkt[GTP_U_Header].teid, 0xbbbbbbbb) |