diff options
author | Paul Vinciguerra <pvinci@vinciconsulting.com> | 2019-05-28 17:33:08 -0400 |
---|---|---|
committer | Neale Ranns <nranns@cisco.com> | 2019-05-29 13:09:24 +0000 |
commit | 02d576b754191a6dbffb7829db7cb18567b9b97f (patch) | |
tree | 83f4a9a10f4215d2a9d6479fe7608691650827ff | |
parent | 6aa58b732bcff8060f287472c3d3c08137fabca9 (diff) |
Tests: vpp_pg_interface. Don't rewrite Dot1AD ethertype.
Type: Refactor
Change-Id: I42f65bcc76e4b0fcfbfe051c1c382a940bff1b3a
Signed-off-by: Paul Vinciguerra <pvinci@vinciconsulting.com>
-rwxr-xr-x | test/vpp_pg_interface.py | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/test/vpp_pg_interface.py b/test/vpp_pg_interface.py index 518798d17a3..7c31cfc2d27 100755 --- a/test/vpp_pg_interface.py +++ b/test/vpp_pg_interface.py @@ -423,10 +423,6 @@ class VppPGInterface(VppInterface): pg_interface.name) return arp_reply = captured_packet.copy() # keep original for exception - # Make Dot1AD packet content recognizable to scapy - if arp_reply.type == 0x88a8: - arp_reply.type = 0x8100 - arp_reply = Ether(scapy.compat.raw(arp_reply)) try: if arp_reply[ARP].op == ARP.is_at: self.test.logger.info("VPP %s MAC address is %s " % @@ -470,13 +466,6 @@ class VppPGInterface(VppInterface): "Timeout while waiting for NDP response") raise ndp_reply = captured_packet.copy() # keep original for exception - # Make Dot1AD packet content recognizable to scapy - if ndp_reply.type == 0x88a8: - self._test.logger.info( - "Replacing EtherType: 0x88a8 with " - "0x8100 and regenerating Ethernet header. ") - ndp_reply.type = 0x8100 - ndp_reply = Ether(scapy.compat.raw(ndp_reply)) try: ndp_na = ndp_reply[ICMPv6ND_NA] opt = ndp_na[ICMPv6NDOptDstLLAddr] |