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
Original file line number Diff line number Diff line change
Expand Up @@ -270,18 +270,6 @@ bfd/test_bfd_traffic.py:
#######################################
##### bgp #####
#######################################
bgp/reliable_tsa/test_reliable_tsa_flaky.py:
skip:
reason: "reliable TSA is not supported on non-chassis"
conditions:
- "is_chassis==False"

bgp/reliable_tsa/test_reliable_tsa_stable.py:
skip:
reason: "reliable TSA is not supported on non-chassis"
conditions:
- "is_chassis==False"

bgp/test_bgp_allow_list.py:
skip:
reason: "Only supported on t1 topo. But Cisco 8111 or 8122 T1(compute ai) platform is not supported."
Expand Down
4 changes: 2 additions & 2 deletions tests/everflow/everflow_test_utilities.py
Original file line number Diff line number Diff line change
Expand Up @@ -1046,9 +1046,9 @@ def send_and_check_mirror_packets(self,
src_port_metadata_map = {}

if 't2' in setup['topo'] and 'lt2' not in setup['topo'] and 'ft2' not in setup['topo']:
src_port_set.add(src_port)
src_port_metadata_map[src_port] = (None, 1)
if valid_across_namespace is True:
src_port_set.add(src_port)
src_port_metadata_map[src_port] = (None, 1)
# Add the dest_port to src_port_set only in non MACSEC testbed scenarios
if not MACSEC_INFO:
if duthost.facts['switch_type'] == "voq":
Expand Down
3 changes: 2 additions & 1 deletion tests/everflow/test_everflow_testbed.py
Original file line number Diff line number Diff line change
Expand Up @@ -1109,7 +1109,8 @@ def configure_mirror_session_with_queue(mirror_session, queue_num):
dest_port_type,
queue,
asic_ns,
recircle_port
recircle_port,
valid_across_namespace=everflow_dut.is_multi_asic
)
finally:
remote_dut.shell(remote_dut.get_vtysh_cmd_for_namespace(
Expand Down
Loading