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
6 changes: 3 additions & 3 deletions tests/common/fixtures/ptfhost_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -235,9 +235,9 @@ def ptf_portmap_file_module(rand_selected_dut, ptfhost, tbinfo):
def run_icmp_responder_session(duthosts, duthost, ptfhost, tbinfo):
"""Run icmp_responder on ptfhost session-wise on dualtor testbeds with active-active ports."""
# No vlan is available on non-t0 testbed, so skip this fixture
if "dualtor" not in tbinfo["topo"]["name"]:
if "dualtor-mixed" not in tbinfo["topo"]["name"] and "dualtor-aa" not in tbinfo["topo"]["name"]:
logger.info("Skip running icmp_responder at session level, "
"it is only for dualtor testbed.")
"it is only for dualtor testbed with active-active mux ports.")
yield
return

Expand Down Expand Up @@ -269,7 +269,7 @@ def run_icmp_responder_session(duthosts, duthost, ptfhost, tbinfo):

yield

logger.info("Leave icmp_responder running for dualtor/dualtor-mixed/dualtor-aa topology")
logger.info("Leave icmp_responder running for dualtor-mixed/dualtor-aa topology")
return


Expand Down