pespin has submitted this change. ( https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/42526?usp=email )
Change subject: stp: m3ua: Fix incorrect RCTX being sent in TC_combinedlset_loadshare ......................................................................
stp: m3ua: Fix incorrect RCTX being sent in TC_combinedlset_loadshare
An ASPAC was being sent containing an RCTX of an unrelated AS to the sending ASP. Newer libosmo-sigtran properly validates AS/RCTX is associated to the ASP in the local config, and hence now returns an error properly making the test fail.
Change-Id: Id8381a028a919a265ca330ef4f61c76637c168f6 --- M stp/STP_Tests_M3UA.ttcn 1 file changed, 1 insertion(+), 1 deletion(-)
Approvals: Jenkins Builder: Verified osmith: Looks good to me, approved
diff --git a/stp/STP_Tests_M3UA.ttcn b/stp/STP_Tests_M3UA.ttcn index 485ca76..59839b0 100644 --- a/stp/STP_Tests_M3UA.ttcn +++ b/stp/STP_Tests_M3UA.ttcn @@ -1738,7 +1738,7 @@ }
/* activate the second 'receiver' side ASP+AS */ - f_M3UA_asp_up_act(2, c_M3UA_TMT_override, rctx_receiver); + f_M3UA_asp_up_act(2, c_M3UA_TMT_override, rctx_receiver2);
/* verify traffic is routed from sender to new receiver */ const integer iter_per_asp := 20;