Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
e95e539
[action] [PR:21015] Fix vtysh 'received-routes' command for multi-asi…
mssonicbld Jun 12, 2026
325e3b1
[action] [PR:20881] Fixing HashTest Bugs #20840 and #21071 (#25323)
mssonicbld Jun 12, 2026
e520231
Revert "[action] [PR:23604] Adding confed config to t2 topology: topo…
YatishSVC Jun 12, 2026
0be83ff
[action] [PR:25187] Fix race condition in sflow reboot testing (#25342)
mssonicbld Jun 12, 2026
644c4ef
[action] [PR:25313] Ignoring `Invalid VRF name` errors in VxLAN tests…
mssonicbld Jun 12, 2026
1aae297
[action] [PR:21666] Fix GCU portchannel tests for multi-ASIC devices …
mssonicbld Jun 15, 2026
9c43007
[action] [PR:23793] [Qos]UpdateFeatureState func call in teardown fix…
mssonicbld Jun 15, 2026
98b407b
[action] [PR:25055] [console] Fix SSH connection for paramiko 5.x by …
mssonicbld Jun 15, 2026
5753f97
[action] [PR:25250] Update qos params for topo-ft2-64 (#25381)
mssonicbld Jun 16, 2026
6011efd
[action] [PR:25203] Update qos params for topo-lt2-p32o64 (#25380)
mssonicbld Jun 16, 2026
5b8c120
[action] [PR:25252] [dash]: Add apply_dash_configs helper to enforce …
mssonicbld Jun 16, 2026
97734f2
[action] [PR:24316] test_po_update.py - cannot remove the last IP ent…
mssonicbld Jun 16, 2026
3fdb1bb
[action] [PR:25314] [route/test_duplicate_route]: Skip unsupported IP…
mssonicbld Jun 16, 2026
79dd611
[action] [PR:24281] Fix check_docker_status on multi-asic to skip che…
mssonicbld Jun 16, 2026
04501ee
[action] [PR:24756] Fix withdraw_and_announce_existing_routes fixture…
mssonicbld Jun 16, 2026
101d7fd
[action] [PR:23542] [ACL] Fix missing upstream ports in ACL table for…
mssonicbld Jun 16, 2026
cf671be
[action] [PR:24257] fix resetWatermark QoS fixture on chassis (#25406)
mssonicbld Jun 16, 2026
b962394
[action] [PR:24105] Skip `ip_proto` variant in `test_fib.py` test on …
mssonicbld Jun 17, 2026
6ad5320
[action] [PR:23955] Fix LLDP neighbor check flakiness after swss rest…
mssonicbld Jun 17, 2026
812b35f
[action] [PR:23751] Update sku-sensors-data.yml for 7280R4-32QF-32DF-…
mssonicbld Jun 17, 2026
88e5b52
[action] [PR:24091] Adding confed configuration to topo_t2_single_nod…
mssonicbld Jun 17, 2026
f78bfc8
Merge branch '202511' into '202603'
lizhijianrd Jun 18, 2026
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
708 changes: 288 additions & 420 deletions ansible/group_vars/sonic/sku-sensors-data.yml

Large diffs are not rendered by default.

13 changes: 10 additions & 3 deletions ansible/roles/test/files/ptftests/py3/hash_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -651,6 +651,13 @@ class IPinIPHashTest(HashTest):
for IPinIP packet.
'''

def send_and_verify_packets(self, src_port, pkt, masked_exp_pkt, dst_port_lists, is_timeout=False, logs=[]):
"""
@summary: Send an IPinIP encapsulated packet and verify it is received on expected ports.
"""
return super().send_and_verify_packets(src_port, pkt, masked_exp_pkt, dst_port_lists, is_timeout=False,
logs=logs)

def create_packets_logs(
self, src_port, sport, dport, version='IP', pkt=None, ipinip_pkt=None,
vxlan_pkt=None, nvgre_pkt=None, inner_pkt=None, outer_sport=None,
Expand All @@ -673,9 +680,9 @@ def create_packets_logs(
next_header_key,
outer_proto,
version,
pkt[version].src,
pkt[version].dst,
pkt[version].proto if version == 'IP' else pkt['IPv6'].nh,
inner_pkt[version].src,
inner_pkt[version].dst,
inner_pkt[version].proto if version == 'IP' else inner_pkt['IPv6'].nh,
sport,
dport,
src_port))
Expand Down
Loading