Skip to content

Commit

Permalink
try to fix test case failures
Browse files Browse the repository at this point in the history
  • Loading branch information
bradh352 committed Jan 24, 2025
1 parent d020c11 commit ed7b055
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions tests/test_evpn_tunnel.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,15 +141,18 @@ def test_p2mp_tunnel_with_dip(self, dvs, testlog):
vxlan_obj.create_vlan1(dvs,"Vlan100")
vxlan_obj.create_vlan1(dvs,"Vlan101")
vxlan_obj.create_vlan1(dvs,"Vlan102")
vxlan_obj.create_vxlan_tunnel(dvs, tunnel_name, '6.6.6.6', '2.2.2.2', False)
vxlan_obj.create_vxlan_tunnel(dvs, tunnel_name, '6.6.6.6')
vxlan_obj.create_vxlan_tunnel_map(dvs, tunnel_name, map_name, '1000', 'Vlan100')
vxlan_obj.create_vxlan_tunnel_map(dvs, tunnel_name, map_name_1, '1001', 'Vlan101')
vxlan_obj.create_vxlan_tunnel_map(dvs, tunnel_name, map_name_2, '1002', 'Vlan102')

vlanlist = ['100', '101', '102']
vnilist = ['1000', '1001', '1002']

print("Testing SIP Tunnel Creation")
vxlan_obj.create_evpn_nvo(dvs, 'nvo1', tunnel_name)
vxlan_obj.create_evpn_remote_vni(dvs, 'Vlan100', '2.2.2.2', '1000')

print("Testing P2MP Tunnel Creation with DIP")
vxlan_obj.check_vxlan_sip_tunnel(dvs, tunnel_name, '6.6.6.6', vlanlist, vnilist, '2.2.2.2', False)

print("Testing Tunnel Map Entry")
Expand Down

0 comments on commit ed7b055

Please sign in to comment.