diff options
Diffstat (limited to 'test/test_vxlan_gpe.py')
-rw-r--r-- | test/test_vxlan_gpe.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/test_vxlan_gpe.py b/test/test_vxlan_gpe.py index 5c3ac16640c..c5d6bf07f7c 100644 --- a/test/test_vxlan_gpe.py +++ b/test/test_vxlan_gpe.py @@ -80,6 +80,8 @@ class TestVxlanGpe(BridgeDomain, VppTestCase): # Verify UDP destination port is VXLAN-GPE 4790, source UDP port # could be arbitrary. self.assertEqual(pkt[UDP].dport, type(self).dport) + # Verify UDP checksum + self.assert_udp_checksum_valid(pkt) # Verify VNI self.assertEqual(pkt[VXLAN].vni, vni) |