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
37 changes: 37 additions & 0 deletions tests/common/plugins/conditional_mark/tests_mark_conditions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1086,6 +1086,12 @@ hash/test_generic_hash.py::test_lag_member_flap[CRC-INNER_IP_PROTOCOL:
conditions:
- "asic_type in ['mellanox']"

hash/test_generic_hash.py::test_lag_member_flap[CRC-IP_PROTOCOL-ipv4:
skip:
reason: "With IP Protocol alone, we don't have enough entropy to distribute the packets evenly"
conditions:
- "asic_type in ['cisco-8000']"

hash/test_generic_hash.py::test_lag_member_flap[CRC_CCITT-INNER_IP_PROTOCOL:
skip:
reason: "On Mellanox platforms, due to HW limitation, it would not support CRC algorithm on INNER_IP_PROTOCOL field"
Expand All @@ -1099,6 +1105,13 @@ hash/test_generic_hash.py::test_lag_member_flap[CRC_CCITT-IN_PORT:
conditions:
- "asic_type in ['mellanox']"

hash/test_generic_hash.py::test_lag_member_flap[CRC_CCITT-IP_PROTOCOL-ipv4:
skip:
reason: "With IP Protocol alone, we don't have enough entropy to distribute the packets evenly"
conditions:
- "asic_type in ['cisco-8000']"


hash/test_generic_hash.py::test_lag_member_remove_add:
skip:
reason: 'On Mellanox SPC1 platforms, due to HW limitation, it would not support CRC_CCITT algorithm. For broadcom, LAG hash not supported in broadcom SAI. For other platforms, skipping due to missing object in SonicHost'
Expand All @@ -1114,6 +1127,12 @@ hash/test_generic_hash.py::test_lag_member_remove_add[CRC-INNER_IP_PROTOCOL:
conditions:
- "asic_type in ['mellanox']"

hash/test_generic_hash.py::test_lag_member_remove_add[CRC-IP_PROTOCOL-ipv4:
skip:
reason: "With IP Protocol alone, we don't have enough entropy to distribute the packets evenly"
conditions:
- "asic_type in ['cisco-8000']"

hash/test_generic_hash.py::test_lag_member_remove_add[CRC_CCITT-INNER_IP_PROTOCOL:
skip:
reason: "On Mellanox platforms, due to HW limitation, it would not support CRC algorithm on INNER_IP_PROTOCOL field"
Expand All @@ -1127,6 +1146,12 @@ hash/test_generic_hash.py::test_lag_member_remove_add[CRC_CCITT-IN_PORT:
conditions:
- "asic_type in ['mellanox']"

hash/test_generic_hash.py::test_lag_member_remove_add[CRC_CCITT-IP_PROTOCOL-ipv4:
skip:
reason: "With IP Protocol alone, we don't have enough entropy to distribute the packets evenly"
conditions:
- "asic_type in ['cisco-8000']"

hash/test_generic_hash.py::test_nexthop_flap:
skip:
reason: 'On Mellanox SPC1 platforms, due to HW limitation, it would not support CRC_CCITT algorithm. For broadcom, ECMP/LAG hash not supported in broadcom SAI. For other platforms, skipping due to missing object in SonicHost'
Expand Down Expand Up @@ -1173,6 +1198,12 @@ hash/test_generic_hash.py::test_reboot[CRC-INNER_IP_PROTOCOL:
conditions:
- "asic_type in ['mellanox']"

hash/test_generic_hash.py::test_reboot[CRC-IP_PROTOCOL-ipv4:
skip:
reason: "With IP Protocol alone, we don't have enough entropy to distribute the packets evenly"
conditions:
- "asic_type in ['cisco-8000']"

hash/test_generic_hash.py::test_reboot[CRC_CCITT-INNER_IP_PROTOCOL:
skip:
reason: "On Mellanox platforms, due to HW limitation, it would not support CRC algorithm on INNER_IP_PROTOCOL field"
Expand All @@ -1186,6 +1217,12 @@ hash/test_generic_hash.py::test_reboot[CRC_CCITT-IN_PORT:
conditions:
- "asic_type in ['mellanox']"

hash/test_generic_hash.py::test_reboot[CRC_CCITT-IP_PROTOCOL-ipv4:
skip:
reason: "With IP Protocol alone, we don't have enough entropy to distribute the packets evenly"
conditions:
- "asic_type in ['cisco-8000']"

#######################################
##### http #####
#######################################
Expand Down
Loading