We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f013d7a commit 433d6e9Copy full SHA for 433d6e9
1 file changed
tests/qos/qos_sai_base.py
@@ -928,6 +928,12 @@ def dutConfig(
928
if len(dutPortIps[src_dut_index][src_asic_index]) != 0:
929
testPortIps.update(dutPortIps)
930
931
+ if 'backend' in topo:
932
+ # since backend T0 utilize dot1q encap pkts, testPortIds need to be repopulated with the
933
+ # associated sub-interfaces stored in testPortIps
934
+ testPortIds[src_dut_index][src_asic_index] = sorted(
935
+ list(testPortIps[src_dut_index][src_asic_index].keys()))
936
+
937
elif topo in self.SUPPORTED_T1_TOPOS:
938
# T1 is supported only for 'single_asic' or 'single_dut_multi_asic'.
939
# So use src_dut as the dut
0 commit comments