Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions .azure-pipelines/pr_test_scripts.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -635,6 +635,7 @@ t1-lag:


t1-lag-vpp:
- acl/test_acl.py
- arp/test_neighbor_mac_noptf.py
- arp/test_arpall.py
- arp/test_arp_update.py
Expand Down
13 changes: 12 additions & 1 deletion tests/acl/test_acl.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,14 @@ def remove_dataacl_table(duthosts):
with SafeThreadPoolExecutor(max_workers=8) as executor:
# Recover DUT by reloading minigraph
for duthost in duthosts:
executor.submit(config_reload, duthost, config_source="minigraph", safe_reload=True, override_config=True)
executor.submit(
config_reload,
duthost,
config_source="minigraph",
safe_reload=True,
override_config=True,
check_intf_up_ports=True
)


def remove_dataacl_table_single_dut(table_name, duthost):
Expand Down Expand Up @@ -1728,6 +1735,10 @@ def post_setup_hook(self, dut, localhost, populate_vlan_arp_entries, tbinfo, con
route_convergence_delay = delay
break

asic_type = dut.facts["asic_type"]
if asic_type in ["vpp"]:
route_convergence_delay += 60

logger.info("Route count: {}, setting convergence delay to: {}".format(max_routes, route_convergence_delay))

# todo: remove the extra sleep on chassis device after bgp suppress fib pending feature is enabled
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,6 @@
#######################################
##### ACL #####
#######################################
acl/test_acl.py:
skip:
reason: >
Failed/Errored: To be included
conditions_logical_operator: or
conditions:
- "asic_type in ['vpp']"

acl/test_stress_acl.py::test_acl_add_del_stress:
skip:
reason: >
Expand Down
Loading