Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion tests/ipfwd/test_nhop_group.py
Original file line number Diff line number Diff line change
Expand Up @@ -892,7 +892,14 @@ def test_nhop_group_interface_flap(duthosts, enum_rand_one_per_hwsku_frontend_ho
gather_facts['src_port'][i])
logger.debug("No Shut fanout sw: %s, port: %s", fanout, fanout_port)
fanout.no_shutdown(fanout_port)
time.sleep(20)
# todo: remove the extra sleep on chassis device after bgp suppress fib pending feature is enabled
# We observe flakiness failure on chassis devices
# Suspect it's because the route is not programmed into hardware
# Add external sleep to make sure route is in hardware
if duthost.get_facts().get("modular_chassis"):
time.sleep(180)
else:
time.sleep(20)
duthost.shell("portstat -c")
ptfadapter.dataplane.flush()
testutils.send(ptfadapter, gather_facts['dst_port_ids'][0], pkt, pkt_count)
Expand Down