osmith has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/41459?usp=email )
Change subject: 5gc: skip TC_pdu_sess_modification for latest ......................................................................
5gc: skip TC_pdu_sess_modification for latest
Disable this test for latest as it crashes the SMF and results in the testsuite job failing.
Change-Id: I1c6078961930c58653bf40320a37179d7d3782a7 --- M 5gc/C5G_Tests.ttcn 1 file changed, 5 insertions(+), 1 deletion(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-ttcn3-hacks refs/changes/59/41459/1
diff --git a/5gc/C5G_Tests.ttcn b/5gc/C5G_Tests.ttcn index e8c9cd2..84d0c3f 100644 --- a/5gc/C5G_Tests.ttcn +++ b/5gc/C5G_Tests.ttcn @@ -422,7 +422,11 @@ execute( TC_periodic_registration_updating() ); execute( TC_ue_context_release_no_pdu_session() ); execute( TC_ue_context_release_with_pdu_session() ); - execute( TC_pdu_sess_modification() ); + /* Remove "is nightly" check after open5gs > 2.7.6 is released with + * https://github.com/open5gs/open5gs/commit/59391d8d5ce23835456d4cebbd23c52a18... */ + if (Misc_Helpers.f_osmo_repo_is("nightly")) { + execute( TC_pdu_sess_modification() ); + } execute( TC_ng_register_ping4() ); execute( TC_ng_register_ping4_256() ); }