lynxis lazus has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/40565?usp=email )
Change subject: pcu: TC_sns_del: improve test stability ......................................................................
pcu: TC_sns_del: improve test stability
Add a sleep 1 to ensure the BSSGP flow Ack flows before removing the SNS. Further add a data weight to the other NSVC to have at least one valid NSVC with data weights. Otherwise the NSEI would become unavailable.
Related: OS#6751 Change-Id: Icb32e5f46ba7950848343efc46aee67e2397de5d --- M pcu/PCU_Tests_SNS.ttcn 1 file changed, 3 insertions(+), 1 deletion(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-ttcn3-hacks refs/changes/65/40565/1
diff --git a/pcu/PCU_Tests_SNS.ttcn b/pcu/PCU_Tests_SNS.ttcn index 3e7f81c..c2fa927 100644 --- a/pcu/PCU_Tests_SNS.ttcn +++ b/pcu/PCU_Tests_SNS.ttcn @@ -354,9 +354,11 @@
testcase TC_sns_del() runs on RAW_Test_CT { f_sns_bringup_1c1u(); + f_outgoing_sns_chg_weight(idx_chg := 0, w_sig := 1, w_user := 1, idx := 0); + + f_sleep(1.0);
f_TC_sns_del(); - f_clean_ns_codec(); }