diff options
author | Neale Ranns <nranns@cisco.com> | 2020-04-03 07:46:28 +0000 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2020-04-10 12:21:30 +0000 |
commit | 91fd910d7d7611a28d1f85482ed5d5c3ee6a8853 (patch) | |
tree | f2594418e3e7e80a69f16491da15a7af152feb1a /test/template_bd.py | |
parent | ae9c45938bdf6e180f83f02aed31113e60db20a9 (diff) |
geneve: Fix the byte swapping for the VNI
Type: fix
- swipe away the vomit indent left last time.
- add tests for VNIs > 16bit
Change-Id: I2d1f591bfb9d7a18996c38969365a509168d4193
Signed-off-by: Neale Ranns <nranns@cisco.com>
Diffstat (limited to 'test/template_bd.py')
-rw-r--r-- | test/template_bd.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/template_bd.py b/test/template_bd.py index bd55b9b6890..198cc2258b8 100644 --- a/test/template_bd.py +++ b/test/template_bd.py @@ -74,7 +74,7 @@ class BridgeDomain(object): """ encapsulated_pkt = self.encapsulate(self.frame_request, - self.single_tunnel_bd) + self.single_tunnel_vni) self.pg0.add_stream([encapsulated_pkt, ]) @@ -102,7 +102,7 @@ class BridgeDomain(object): # Pick first received frame and check if it's correctly encapsulated. out = self.pg0.get_capture(1) pkt = out[0] - self.check_encapsulation(pkt, self.single_tunnel_bd) + self.check_encapsulation(pkt, self.single_tunnel_vni) payload = self.decapsulate(pkt) self.assert_eq_pkts(payload, self.frame_reply) |