lists.osmocom.org
Sign In
Sign Up
Sign In
Sign Up
Manage this list
×
Keyboard Shortcuts
Thread View
j
: Next unread message
k
: Previous unread message
j a
: Jump to all threads
j l
: Jump to MailingList overview
2025
June
May
April
March
February
January
2024
December
November
October
September
August
July
June
May
April
March
February
January
2023
December
November
October
September
August
July
June
May
April
March
February
January
2022
December
November
October
September
August
July
June
May
April
March
February
January
List overview
Download
gerrit-log
June 2024
----- 2025 -----
June 2025
May 2025
April 2025
March 2025
February 2025
January 2025
----- 2024 -----
December 2024
November 2024
October 2024
September 2024
August 2024
July 2024
June 2024
May 2024
April 2024
March 2024
February 2024
January 2024
----- 2023 -----
December 2023
November 2023
October 2023
September 2023
August 2023
July 2023
June 2023
May 2023
April 2023
March 2023
February 2023
January 2023
----- 2022 -----
December 2022
November 2022
October 2022
September 2022
August 2022
July 2022
June 2022
May 2022
April 2022
March 2022
February 2022
January 2022
gerrit-log@lists.osmocom.org
1 participants
1566 discussions
Start a n
N
ew thread
[S] Change in osmo-ttcn3-hacks[master]: s1gw: rework module parameter naming, add mp_s1gw_mme_ip
by fixeria
fixeria has uploaded this change for review. (
https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/37246?usp=email
) Change subject: s1gw: rework module parameter naming, add mp_s1gw_mme_ip ...................................................................... s1gw: rework module parameter naming, add mp_s1gw_mme_ip Change-Id: Ice665662c8448c8314d5e6cc1e401e62b635872c Related: SYS#6772 --- M s1gw/S1GW_Tests.cfg M s1gw/S1GW_Tests.ttcn 2 files changed, 17 insertions(+), 3 deletions(-) git pull ssh://gerrit.osmocom.org:29418/osmo-ttcn3-hacks refs/changes/46/37246/1 diff --git a/s1gw/S1GW_Tests.cfg b/s1gw/S1GW_Tests.cfg index 336be14..536f0ec 100644 --- a/s1gw/S1GW_Tests.cfg +++ b/s1gw/S1GW_Tests.cfg @@ -11,6 +11,9 @@ [TESTPORT_PARAMETERS] [MODULE_PARAMETERS] +S1GW_Tests.mp_s1gw_enb_ip := "127.0.1.1"; +S1GW_Tests.mp_s1gw_mme_ip := "127.0.2.1"; +S1GW_Tests.mp_mme_bind_ip := "127.0.2.10"; [MAIN_CONTROLLER] diff --git a/s1gw/S1GW_Tests.ttcn b/s1gw/S1GW_Tests.ttcn index df988d5..c7c55ef 100644 --- a/s1gw/S1GW_Tests.ttcn +++ b/s1gw/S1GW_Tests.ttcn @@ -32,8 +32,9 @@ import from S1AP_Server all; modulepar { - charstring mp_s1gw_ip := "127.0.1.1"; - charstring mp_mme_bind_ip := "127.0.2.10"; + charstring mp_s1gw_enb_ip; /* eNB facing address of the S1GW */ + charstring mp_s1gw_mme_ip; /* MME facing address of the S1GW */ + charstring mp_mme_bind_ip; /* MME address on which we get connections from S1GW */ } private type record of ConnHdlr ConnHdlrList; @@ -112,7 +113,7 @@ /* initiate SCTP connection establishment */ res := S1AP_CodecPort_CtrlFunct.f_IPL4_connect(S1AP_ENB, - mp_s1gw_ip, 36412, + mp_s1gw_enb_ip, 36412, "0.0.0.0", 0, -1, { sctp := c_SctpTuple_S1AP }); if (not ispresent(res.connId)) { -- To view, visit
https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/37246?usp=email
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-ttcn3-hacks Gerrit-Branch: master Gerrit-Change-Id: Ice665662c8448c8314d5e6cc1e401e62b635872c Gerrit-Change-Number: 37246 Gerrit-PatchSet: 1 Gerrit-Owner: fixeria <vyanitskiy(a)sysmocom.de> Gerrit-MessageType: newchange
1 year
1
0
0
0
[S] Change in osmo-ttcn3-hacks[master]: s1gw: pass Global_ENB_ID to ConnHdlr
by fixeria
fixeria has uploaded this change for review. (
https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/37243?usp=email
) Change subject: s1gw: pass Global_ENB_ID to ConnHdlr ...................................................................... s1gw: pass Global_ENB_ID to ConnHdlr Change-Id: I9660ca96f13c4e4c890f3957a25d01a27e2e0cac Related: SYS#6772 --- M s1gw/S1GW_Tests.ttcn 1 file changed, 28 insertions(+), 17 deletions(-) git pull ssh://gerrit.osmocom.org:29418/osmo-ttcn3-hacks refs/changes/43/37243/1 diff --git a/s1gw/S1GW_Tests.ttcn b/s1gw/S1GW_Tests.ttcn index ffc5c9b..df988d5 100644 --- a/s1gw/S1GW_Tests.ttcn +++ b/s1gw/S1GW_Tests.ttcn @@ -79,10 +79,15 @@ vc_S1APSRV.start(S1AP_Server.main(cpars)); } -type union ConnHdlrPars { - integer seed +type record ConnHdlrPars { + Global_ENB_ID genb_id }; +template (value) ConnHdlrPars +t_ConnHdlrPars(integer enb_id := 0) := { + genb_id := ts_Global_ENB_ID(enb_id) +} + type function void_fn(ConnHdlrPars pars) runs on ConnHdlr; function f_ConnHdlr_spawn(void_fn fn, ConnHdlrPars pars) @@ -184,19 +189,17 @@ function f_TC_setup(ConnHdlrPars pars) runs on ConnHdlr { - var Global_ENB_ID genb_id := valueof(ts_Global_ENB_ID(pars.seed)); - - f_ConnHdlr_register(genb_id); + f_ConnHdlr_register(pars.genb_id); f_ConnHdlr_connect(); - f_ConnHdlr_setup(genb_id); + f_ConnHdlr_setup(pars.genb_id); f_sleep(0.5); /* keep the connection idle for some time */ f_ConnHdlr_disconnect(); - f_ConnHdlr_unregister(genb_id); + f_ConnHdlr_unregister(pars.genb_id); } testcase TC_setup() runs on test_CT { - var ConnHdlrPars pars := { seed := 0 }; + var ConnHdlrPars pars := valueof(t_ConnHdlrPars); var ConnHdlr vc_conn; f_init(); @@ -212,7 +215,7 @@ f_init_s1ap_srv(); for (var integer i := 0; i < 42; i := i + 1) { - var ConnHdlrPars pars := { seed := i }; + var ConnHdlrPars pars := valueof(t_ConnHdlrPars(i)); var ConnHdlr vc_conn := f_ConnHdlr_spawn(refers(f_TC_setup), pars); vc_conns := vc_conns & { vc_conn }; } @@ -225,23 +228,21 @@ /* MME terminates connection, expect S1GW to terminate the eNB connection */ function f_TC_conn_term_by_mme(ConnHdlrPars pars) runs on ConnHdlr { - var Global_ENB_ID genb_id := valueof(ts_Global_ENB_ID(pars.seed)); - - f_ConnHdlr_register(genb_id); + f_ConnHdlr_register(pars.genb_id); f_ConnHdlr_connect(); - f_ConnHdlr_setup(genb_id); + f_ConnHdlr_setup(pars.genb_id); f_sleep(0.5); /* keep the connection idle for some time */ /* MME (S1AP_Server_CT) terminates connection */ - f_ConnHdlr_close_conn(genb_id); + f_ConnHdlr_close_conn(pars.genb_id); /* expect our eNB connection to be released gracefully */ f_ConnHdlr_expect_shutdown(); - f_ConnHdlr_unregister(genb_id); + f_ConnHdlr_unregister(pars.genb_id); } testcase TC_conn_term_by_mme() runs on test_CT { - var ConnHdlrPars pars := { seed := 0 }; + var ConnHdlrPars pars := valueof(t_ConnHdlrPars); var ConnHdlr vc_conn; f_init(); @@ -261,7 +262,7 @@ setverdict(pass); } testcase TC_conn_term_mme_unavail() runs on test_CT { - var ConnHdlrPars pars := { seed := 0 }; + var ConnHdlrPars pars := valueof(t_ConnHdlrPars); var ConnHdlr vc_conn; f_init(); -- To view, visit
https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/37243?usp=email
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-ttcn3-hacks Gerrit-Branch: master Gerrit-Change-Id: I9660ca96f13c4e4c890f3957a25d01a27e2e0cac Gerrit-Change-Number: 37243 Gerrit-PatchSet: 1 Gerrit-Owner: fixeria <vyanitskiy(a)sysmocom.de> Gerrit-MessageType: newchange
1 year
1
0
0
0
[M] Change in osmo-ttcn3-hacks[master]: s1ap: add send/receive templates for E-RAB SETUP REQUEST
by fixeria
fixeria has uploaded this change for review. (
https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/37244?usp=email
) Change subject: s1ap: add send/receive templates for E-RAB SETUP REQUEST ...................................................................... s1ap: add send/receive templates for E-RAB SETUP REQUEST Change-Id: I145e2068ba62cdff8f3075f97c274e248864a9f7 Related: SYS#6772 --- M library/s1ap/S1AP_Templates.ttcn 1 file changed, 91 insertions(+), 0 deletions(-) git pull ssh://gerrit.osmocom.org:29418/osmo-ttcn3-hacks refs/changes/44/37244/1 diff --git a/library/s1ap/S1AP_Templates.ttcn b/library/s1ap/S1AP_Templates.ttcn index 26e1ae1..099007c 100644 --- a/library/s1ap/S1AP_Templates.ttcn +++ b/library/s1ap/S1AP_Templates.ttcn @@ -971,4 +971,85 @@ tr_S1AP_Reset, tr_S1AP_ResetAck, tr_S1AP_ResetAck_any, tr_S1AP_MMEDirectInfTrans ); + +/* 9.1.3.1 E-RAB SETUP REQUEST */ +template (value) E_RABToBeSetupItemBearerSUReq +ts_S1AP_RABToBeSetupItemBearerSUReq(template (value) E_RAB_ID rab_id, + template (value) E_RABLevelQoSParameters qos_params, + template (value) TransportLayerAddress tla, + template (value) GTP_TEID gtp_teid, + template (value) NAS_PDU nas_pdu) := { + e_RAB_ID := rab_id, + e_RABlevelQoSParameters := qos_params, + transportLayerAddress := tla, + gTP_TEID := gtp_teid, + nAS_PDU := nas_pdu, + iE_Extensions := omit +} +template (value) E_RABToBeSetupListBearerSUReq +ts_S1AP_RABToBeSetupListBearerSUReq(template (value) E_RABToBeSetupItemBearerSUReq it) := { + { + id := S1AP_Constants.id_E_RABToBeSetupItemBearerSUReq, + criticality := reject, + value_ := { E_RABToBeSetupItemBearerSUReq := it } + } +} + +template (value) S1AP_PDU +ts_S1AP_RABSetupReq(template (value) MME_UE_S1AP_ID mme_id, + template (value) ENB_UE_S1AP_ID enb_id, + template (value) E_RABToBeSetupListBearerSUReq rab_setup_items) := { + initiatingMessage := { + procedureCode := S1AP_Constants.id_E_RABSetup, + criticality := reject, + value_ := { + E_RABSetupRequest := { + protocolIEs := { + { + id := S1AP_Constants.id_MME_UE_S1AP_ID, + criticality := reject, + value_ := { MME_UE_S1AP_ID := mme_id } + }, { + id := S1AP_Constants.id_eNB_UE_S1AP_ID, + criticality := reject, + value_ := { ENB_UE_S1AP_ID := enb_id } + }, { + id := S1AP_Constants.id_E_RABToBeSetupListBearerSUReq, + criticality := reject, + value_ := { E_RABToBeSetupListBearerSUReq := rab_setup_items } + } + } + } + } + } +} +template (present) S1AP_PDU +tr_S1AP_RABSetupReq(template (present) MME_UE_S1AP_ID mme_id := ?, + template (present) ENB_UE_S1AP_ID enb_id := ?, + template (present) E_RABToBeSetupListBearerSUReq rab_setup_items := ?) := { + initiatingMessage := { + procedureCode := S1AP_Constants.id_E_RABSetup, + criticality := reject, + value_ := { + E_RABSetupRequest := { + protocolIEs := { + { + id := S1AP_Constants.id_MME_UE_S1AP_ID, + criticality := reject, + value_ := { MME_UE_S1AP_ID := mme_id } + }, { + id := S1AP_Constants.id_eNB_UE_S1AP_ID, + criticality := reject, + value_ := { ENB_UE_S1AP_ID := enb_id } + }, { + id := S1AP_Constants.id_E_RABToBeSetupListBearerSUReq, + criticality := reject, + value_ := { E_RABToBeSetupListBearerSUReq := rab_setup_items } + }, * + } + } + } + } +} + } -- To view, visit
https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/37244?usp=email
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-ttcn3-hacks Gerrit-Branch: master Gerrit-Change-Id: I145e2068ba62cdff8f3075f97c274e248864a9f7 Gerrit-Change-Number: 37244 Gerrit-PatchSet: 1 Gerrit-Owner: fixeria <vyanitskiy(a)sysmocom.de> Gerrit-MessageType: newchange
1 year
1
0
0
0
[M] Change in osmo-ttcn3-hacks[master]: s1gw: add TC_e_rab_setup
by fixeria
fixeria has uploaded this change for review. (
https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/37245?usp=email
) Change subject: s1gw: add TC_e_rab_setup ...................................................................... s1gw: add TC_e_rab_setup Change-Id: I94eb8cac4b5659c0f6f1bb248a80692b8cf84b6f --- M s1gw/S1GW_Tests.ttcn 1 file changed, 66 insertions(+), 0 deletions(-) git pull ssh://gerrit.osmocom.org:29418/osmo-ttcn3-hacks refs/changes/45/37245/1 diff --git a/s1gw/S1GW_Tests.ttcn b/s1gw/S1GW_Tests.ttcn index df988d5..bb8685b 100644 --- a/s1gw/S1GW_Tests.ttcn +++ b/s1gw/S1GW_Tests.ttcn @@ -273,11 +273,68 @@ vc_conn.done; } +function f_TC_e_rab_setup(ConnHdlrPars pars) runs on ConnHdlr { + var Global_ENB_ID genb_id := valueof(ts_Global_ENB_ID(pars.seed)); + var S1AP_PDU pdu; + timer T; + + f_ConnHdlr_register(genb_id); + f_ConnHdlr_connect(); + f_ConnHdlr_setup(genb_id); + + const integer mme_id := 7; + const integer enb_id := 9; + // var E_RABToBeSetupListBearerSUReq items := valueof(E_RABToBeSetupListBearerSUReq(item)); + var E_RABToBeSetupItemBearerSUReq item; + var template (value) E_RABToBeSetupListBearerSUReq items; + + var E_RABToBeSetupItemBearerSUReq item := { + e_RAB_ID + e_RABlevelQoSParameters + transportLayerAddress + gTP_TEID + nAS_PDU := ''O, + iE_Extensions := omit + }; + items := ts_S1AP_RABToBeSetupListBearerSUReq(item); + + S1AP_ENB.send(t_S1AP_Send(g_s1ap_conn_id, + ts_S1AP_RABSetupReq(mme_id, enb_id, items))); + T.start(0.5); + alt { + [] S1AP_CONN.receive(tr_S1AP_RABSetupReq) -> value pdu { + setverdict(pass); + T.stop; + } + [] S1AP_CONN.receive(S1AP_PDU:?) -> value pdu { + setverdict(fail, "Rx unexpected S1AP PDU: ", pdu); + T.stop; + } + [] T.timeout { + setverdict(fail, "Timeout waiting for S1AP E-RAB SETUP Req"); + } + } + + f_ConnHdlr_disconnect(); + f_ConnHdlr_unregister(genb_id); +} +testcase TC_e_rab_setup() runs on test_CT { + var ConnHdlrPars pars := { seed := 0 }; + var ConnHdlr vc_conn; + + f_init(); + f_init_s1ap_srv(); + + vc_conn := f_ConnHdlr_spawn(refers(f_TC_e_rab_setup), pars); + vc_conn.done; +} + control { execute( TC_setup() ); execute( TC_setup_multi() ); execute( TC_conn_term_by_mme() ); execute( TC_conn_term_mme_unavail() ); + execute( TC_e_rab_setup() ); } } -- To view, visit
https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/37245?usp=email
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-ttcn3-hacks Gerrit-Branch: master Gerrit-Change-Id: I94eb8cac4b5659c0f6f1bb248a80692b8cf84b6f Gerrit-Change-Number: 37245 Gerrit-PatchSet: 1 Gerrit-Owner: fixeria <vyanitskiy(a)sysmocom.de> Gerrit-MessageType: newchange
1 year
1
0
0
0
[S] Change in osmo-ttcn3-hacks[master]: s1gw: S1GW_Tests.default: fix empty junit-xml-*.log files
by fixeria
fixeria has uploaded this change for review. (
https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/37240?usp=email
) Change subject: s1gw: S1GW_Tests.default: fix empty junit-xml-*.log files ...................................................................... s1gw: S1GW_Tests.default: fix empty junit-xml-*.log files I copied this line from some other testsuite (likely ttcn3-mme-test). For some reason it makes TITAN produce empty junit-xml-*.log files, which are essential for the Test Results Analyzer in Jenkins. Change-Id: Ia80bf9640a465dd748f0a47c543b9a745a236133 Related: SYS#6772 --- M s1gw/S1GW_Tests.default 1 file changed, 14 insertions(+), 1 deletion(-) git pull ssh://gerrit.osmocom.org:29418/osmo-ttcn3-hacks refs/changes/40/37240/1 diff --git a/s1gw/S1GW_Tests.default b/s1gw/S1GW_Tests.default index ceca1b2..4ed872b 100644 --- a/s1gw/S1GW_Tests.default +++ b/s1gw/S1GW_Tests.default @@ -1,7 +1,6 @@ [LOGGING] FileMask := LOG_ALL | TTCN_MATCHING; ConsoleMask := ERROR | WARNING | PARALLEL | VERDICTOP | USER; -mtc.FileMask := ERROR | WARNING | PARALLEL | VERDICTOP; [TESTPORT_PARAMETERS] -- To view, visit
https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/37240?usp=email
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-ttcn3-hacks Gerrit-Branch: master Gerrit-Change-Id: Ia80bf9640a465dd748f0a47c543b9a745a236133 Gerrit-Change-Number: 37240 Gerrit-PatchSet: 1 Gerrit-Owner: fixeria <vyanitskiy(a)sysmocom.de> Gerrit-MessageType: newchange
1 year
1
0
0
0
[S] Change in osmo-ttcn3-hacks[master]: s1gw: add and use f_ConnHdlr_expect_shutdown()
by fixeria
fixeria has uploaded this change for review. (
https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/37242?usp=email
) Change subject: s1gw: add and use f_ConnHdlr_expect_shutdown() ...................................................................... s1gw: add and use f_ConnHdlr_expect_shutdown() Change-Id: I7e982f0268a6ee6059e9dfd5fbd6c9019c18359d Related: SYS#6772 --- M s1gw/S1GW_Tests.ttcn 1 file changed, 18 insertions(+), 6 deletions(-) git pull ssh://gerrit.osmocom.org:29418/osmo-ttcn3-hacks refs/changes/42/37242/1 diff --git a/s1gw/S1GW_Tests.ttcn b/s1gw/S1GW_Tests.ttcn index 30dcd46..ffc5c9b 100644 --- a/s1gw/S1GW_Tests.ttcn +++ b/s1gw/S1GW_Tests.ttcn @@ -143,6 +143,12 @@ log("eNB connection closed"); } +function f_ConnHdlr_expect_shutdown() runs on ConnHdlr { + S1AP_ENB.receive(tr_SctpShutDownEvent(g_s1ap_conn_id)); + S1AP_ENB.receive(tr_SctpAssocChange(SCTP_SHUTDOWN_COMP, g_s1ap_conn_id)); + S1AP_ENB.receive(PortEvent:{connClosed := ?}); +} + function f_ConnHdlr_setup(Global_ENB_ID genb_id) runs on ConnHdlr { var S1AP_PDU pdu; timer T; @@ -230,9 +236,7 @@ /* MME (S1AP_Server_CT) terminates connection */ f_ConnHdlr_close_conn(genb_id); /* expect our eNB connection to be released gracefully */ - S1AP_ENB.receive(tr_SctpShutDownEvent(g_s1ap_conn_id)); - S1AP_ENB.receive(tr_SctpAssocChange(SCTP_SHUTDOWN_COMP, g_s1ap_conn_id)); - S1AP_ENB.receive(PortEvent:{connClosed := ?}); + f_ConnHdlr_expect_shutdown(); f_ConnHdlr_unregister(genb_id); } @@ -253,9 +257,7 @@ /* establish an eNB connection to the S1GW */ f_ConnHdlr_connect(); /* expect our eNB connection to be released gracefully */ - S1AP_ENB.receive(tr_SctpShutDownEvent(g_s1ap_conn_id)); - S1AP_ENB.receive(tr_SctpAssocChange(SCTP_SHUTDOWN_COMP, g_s1ap_conn_id)); - S1AP_ENB.receive(PortEvent:{connClosed := ?}); + f_ConnHdlr_expect_shutdown(); setverdict(pass); } testcase TC_conn_term_mme_unavail() runs on test_CT { -- To view, visit
https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/37242?usp=email
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-ttcn3-hacks Gerrit-Branch: master Gerrit-Change-Id: I7e982f0268a6ee6059e9dfd5fbd6c9019c18359d Gerrit-Change-Number: 37242 Gerrit-PatchSet: 1 Gerrit-Owner: fixeria <vyanitskiy(a)sysmocom.de> Gerrit-MessageType: newchange
1 year
1
0
0
0
[S] Change in osmo-ttcn3-hacks[master]: s1gw: add expected-results.xml
by fixeria
fixeria has uploaded this change for review. (
https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/37241?usp=email
) Change subject: s1gw: add expected-results.xml ...................................................................... s1gw: add expected-results.xml Change-Id: I6ee6cd2d996cf898f19f7eb7222e86fb2e211f07 Related: SYS#6772 --- A s1gw/expected-results.xml 1 file changed, 17 insertions(+), 0 deletions(-) git pull ssh://gerrit.osmocom.org:29418/osmo-ttcn3-hacks refs/changes/41/37241/1 diff --git a/s1gw/expected-results.xml b/s1gw/expected-results.xml new file mode 100644 index 0000000..901877a --- /dev/null +++ b/s1gw/expected-results.xml @@ -0,0 +1,7 @@ +<?xml version="1.0"?> +<testsuite name='S1GW_Tests' tests='4' failures='0' errors='0' skipped='0' inconc='0' time='2.00'> + <testcase classname='S1GW_Tests' name='TC_setup' time='MASKED'/> + <testcase classname='S1GW_Tests' name='TC_setup_multi' time='MASKED'/> + <testcase classname='S1GW_Tests' name='TC_conn_term_by_mme' time='MASKED'/> + <testcase classname='S1GW_Tests' name='TC_conn_term_mme_unavail' time='MASKED'/> +</testsuite> -- To view, visit
https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/37241?usp=email
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-ttcn3-hacks Gerrit-Branch: master Gerrit-Change-Id: I6ee6cd2d996cf898f19f7eb7222e86fb2e211f07 Gerrit-Change-Number: 37241 Gerrit-PatchSet: 1 Gerrit-Owner: fixeria <vyanitskiy(a)sysmocom.de> Gerrit-MessageType: newchange
1 year
1
0
0
0
[S] Change in osmo-ci[master]: jobs/ttcn3: add ttcn3-s1gw-test
by fixeria
fixeria has submitted this change. (
https://gerrit.osmocom.org/c/osmo-ci/+/37235?usp=email
) Change subject: jobs/ttcn3: add ttcn3-s1gw-test ...................................................................... jobs/ttcn3: add ttcn3-s1gw-test Change-Id: I659b5c4144900260622a8c878a1567d275c0ba04 Depends: docker-playground.git I95000d7a9d778df1da830cd5059e5b6899391fbe Related: SYS#6772 --- M jobs/ttcn3-testsuites.yml 1 file changed, 15 insertions(+), 0 deletions(-) Approvals: Jenkins Builder: Verified osmith: Looks good to me, approved neels: Looks good to me, but someone else must approve diff --git a/jobs/ttcn3-testsuites.yml b/jobs/ttcn3-testsuites.yml index cd74823..66a8385 100644 --- a/jobs/ttcn3-testsuites.yml +++ b/jobs/ttcn3-testsuites.yml @@ -158,6 +158,10 @@ timer: H 07 * * * # osmo-epdg requires OTP and kernel >= debian12: node: build4-deb12build-ansible + - ttcn3-s1gw-test: + timer: H 07 * * * + # osmo-s1gw requires OTP and kernel >= debian12: + node: build4-deb12build-ansible - ttcn3-asterisk-ims-ue-test: timer: H 07 * * * -- To view, visit
https://gerrit.osmocom.org/c/osmo-ci/+/37235?usp=email
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-ci Gerrit-Branch: master Gerrit-Change-Id: I659b5c4144900260622a8c878a1567d275c0ba04 Gerrit-Change-Number: 37235 Gerrit-PatchSet: 1 Gerrit-Owner: fixeria <vyanitskiy(a)sysmocom.de> Gerrit-Reviewer: Jenkins Builder Gerrit-Reviewer: fixeria <vyanitskiy(a)sysmocom.de> Gerrit-Reviewer: neels <nhofmeyr(a)sysmocom.de> Gerrit-Reviewer: osmith <osmith(a)sysmocom.de> Gerrit-MessageType: merged
1 year
1
0
0
0
[S] Change in osmo-ci[master]: jobs/ttcn3: add ttcn3-s1gw-test
by osmith
Attention is currently required from: fixeria. osmith has posted comments on this change. (
https://gerrit.osmocom.org/c/osmo-ci/+/37235?usp=email
) Change subject: jobs/ttcn3: add ttcn3-s1gw-test ...................................................................... Patch Set 1: Code-Review+2 -- To view, visit
https://gerrit.osmocom.org/c/osmo-ci/+/37235?usp=email
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-ci Gerrit-Branch: master Gerrit-Change-Id: I659b5c4144900260622a8c878a1567d275c0ba04 Gerrit-Change-Number: 37235 Gerrit-PatchSet: 1 Gerrit-Owner: fixeria <vyanitskiy(a)sysmocom.de> Gerrit-Reviewer: Jenkins Builder Gerrit-Reviewer: neels <nhofmeyr(a)sysmocom.de> Gerrit-Reviewer: osmith <osmith(a)sysmocom.de> Gerrit-Attention: fixeria <vyanitskiy(a)sysmocom.de> Gerrit-Comment-Date: Mon, 17 Jun 2024 14:09:04 +0000 Gerrit-HasComments: No Gerrit-Has-Labels: Yes Gerrit-MessageType: comment
1 year
1
0
0
0
[M] Change in osmo-ttcn3-hacks[master]: asterisk: Test initial IMS REGISTER timeout
by jolly
Attention is currently required from: pespin. jolly has posted comments on this change. (
https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/37194?usp=email
) Change subject: asterisk: Test initial IMS REGISTER timeout ...................................................................... Patch Set 2: Code-Review+1 -- To view, visit
https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/37194?usp=email
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-ttcn3-hacks Gerrit-Branch: master Gerrit-Change-Id: If59d43b2779dfbd14890a88d664077c194f843a1 Gerrit-Change-Number: 37194 Gerrit-PatchSet: 2 Gerrit-Owner: pespin <pespin(a)sysmocom.de> Gerrit-Reviewer: Jenkins Builder Gerrit-Reviewer: jolly <andreas(a)eversberg.eu> Gerrit-CC: neels <nhofmeyr(a)sysmocom.de> Gerrit-Attention: pespin <pespin(a)sysmocom.de> Gerrit-Comment-Date: Mon, 17 Jun 2024 07:57:27 +0000 Gerrit-HasComments: No Gerrit-Has-Labels: Yes Gerrit-MessageType: comment
1 year
1
0
0
0
← Newer
1
...
33
34
35
36
37
38
39
...
157
Older →
Jump to page:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
Results per page:
10
25
50
100
200