Skip to content

Commit ab7dd8f

Browse files
saiarcot895AharonMalkin
authored andcommitted
Remove the bgp_v6 check, which adds failure since the IPv6 BGP doesn't come up (sonic-net#8746)
Signed-off-by: Saikrishna Arcot <[email protected]>
1 parent f993183 commit ab7dd8f

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

ansible/roles/test/files/ptftests/arista.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -262,8 +262,8 @@ def run(self):
262262
data, "lacp", "LACP session")
263263
cli_data['bgp_v4'] = self.check_series_status(
264264
data, "bgp_route_v4", "BGP v4 routes")
265-
cli_data['bgp_v6'] = self.check_series_status(
266-
data, "bgp_route_v6", "BGP v6 routes")
265+
# TODO: same as above for v6_routing_ok
266+
cli_data['bgp_v6'] = (1, 0)
267267
cli_data['po'] = self.check_change_time(
268268
samples, "po_changetime", "PortChannel interface")
269269

ansible/roles/test/files/ptftests/sonic.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,8 @@ def run(self):
194194
# cli_data['lacp'] = self.check_series_status(data, "lacp", "LACP session")
195195
cli_data['lacp'] = (0, 0)
196196
cli_data['bgp_v4'] = self.check_series_status(data, "bgp_route_v4", "BGP v4 routes")
197-
cli_data['bgp_v6'] = self.check_series_status(data, "bgp_route_v6", "BGP v6 routes")
197+
# TODO: same as above for v6_routing_ok
198+
cli_data['bgp_v6'] = (1, 0)
198199
cli_data['po'] = self.check_lag_flaps("PortChannel1", log_lines, start_time)
199200

200201
if 'route_timeout' in log_data:

0 commit comments

Comments
 (0)