diff options
author | Neale Ranns <neale.ranns@cisco.com> | 2018-09-05 15:42:26 -0700 |
---|---|---|
committer | Neale Ranns <nranns@cisco.com> | 2018-09-11 16:00:29 +0000 |
commit | c0a93143412b4be7bba087bf633855aeeaee7c56 (patch) | |
tree | d3031d3a0af0963f75b54c169299425cd5d63319 /test/vpp_udp_encap.py | |
parent | 0d8cbc1b1503b633fd024e498e7664b489841075 (diff) |
GBP Endpoint Updates
- common types on the API
- endpoints keyed in various ways for DP lookup
- conparison functions for VPP IP address types
Change-Id: If7ec0bbc5cea71fd0983fe78987d147ec1bd7ec8
Signed-off-by: Neale Ranns <neale.ranns@cisco.com>
Diffstat (limited to 'test/vpp_udp_encap.py')
-rw-r--r-- | test/vpp_udp_encap.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/test/vpp_udp_encap.py b/test/vpp_udp_encap.py index 002f9f4023a..826378b4de8 100644 --- a/test/vpp_udp_encap.py +++ b/test/vpp_udp_encap.py @@ -12,10 +12,8 @@ def find_udp_encap(test, ue): encaps = test.vapi.udp_encap_dump() for e in encaps: if ue.id == e.udp_encap.id \ - and compare_ip_address(e.udp_encap.src_ip.un, - ue.src_ip.addr.ip_addr) \ - and compare_ip_address(e.udp_encap.dst_ip.un, - ue.dst_ip.addr.ip_addr) \ + and ue.src_ip == e.udp_encap.src_ip \ + and ue.dst_ip == e.udp_encap.dst_ip \ and e.udp_encap.dst_port == ue.dst_port \ and e.udp_encap.src_port == ue.src_port: return True |