Skip to content
Success

Console Output

Skipping 61 KB.. Full Log
TCCOpenSecurity.cc:275:7: warning: 'unsigned char* MD5(const unsigned char*, size_t, unsigned char*)' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
  275 |    MD5((const unsigned char*)pszHashInput,pszHashInput.lengthof(),md);
      |    ~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/usr/include/openssl/md5.h:52:38: note: declared here
   52 | OSSL_DEPRECATEDIN_3_0 unsigned char *MD5(const unsigned char *d, size_t n,
      |                                      ^~~
TCCOpenSecurity.cc: In function 'OCTETSTRING TCCOpenSecurity__Functions::f__AES__CBC__128__Encrypt__OpenSSL(const OCTETSTRING&, const OCTETSTRING&, const OCTETSTRING&)':
TCCOpenSecurity.cc:524:22: warning: 'int AES_set_encrypt_key(const unsigned char*, int, AES_KEY*)' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
  524 |   AES_set_encrypt_key(key, 128, &enc_key);
      |   ~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~
In file included from TCCOpenSecurity.cc:21:
/usr/include/openssl/aes.h:51:5: note: declared here
   51 | int AES_set_encrypt_key(const unsigned char *userKey, const int bits,
      |     ^~~~~~~~~~~~~~~~~~~
TCCOpenSecurity.cc:526:18: warning: 'void AES_cbc_encrypt(const unsigned char*, unsigned char*, size_t, const AES_KEY*, unsigned char*, int)' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
  526 |   AES_cbc_encrypt(data, enc_data,
      |   ~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~
  527 |     data_len, &enc_key,
      |     ~~~~~~~~~~~~~~~~~~~
  528 |     k_iv, AES_ENCRYPT);
      |     ~~~~~~~~~~~~~~~~~~
/usr/include/openssl/aes.h:66:6: note: declared here
   66 | void AES_cbc_encrypt(const unsigned char *in, unsigned char *out,
      |      ^~~~~~~~~~~~~~~
TCCOpenSecurity.cc: In function 'OCTETSTRING TCCOpenSecurity__Functions::f__AES__CBC__128__Decrypt__OpenSSL(const OCTETSTRING&, const OCTETSTRING&, const OCTETSTRING&)':
TCCOpenSecurity.cc:569:22: warning: 'int AES_set_decrypt_key(const unsigned char*, int, AES_KEY*)' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
  569 |   AES_set_decrypt_key(key, 128, &dec_key);
      |   ~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~
/usr/include/openssl/aes.h:54:5: note: declared here
   54 | int AES_set_decrypt_key(const unsigned char *userKey, const int bits,
      |     ^~~~~~~~~~~~~~~~~~~
TCCOpenSecurity.cc:571:18: warning: 'void AES_cbc_encrypt(const unsigned char*, unsigned char*, size_t, const AES_KEY*, unsigned char*, int)' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
  571 |   AES_cbc_encrypt(data, dec_data,
      |   ~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~
  572 |     data_len, &dec_key,
      |     ~~~~~~~~~~~~~~~~~~~
  573 |     k_iv, AES_DECRYPT);
      |     ~~~~~~~~~~~~~~~~~~
/usr/include/openssl/aes.h:66:6: note: declared here
   66 | void AES_cbc_encrypt(const unsigned char *in, unsigned char *out,
      |      ^~~~~~~~~~~~~~~
TCCOpenSecurity.cc: In function 'OCTETSTRING TCCOpenSecurity__Functions::f__AES__CBC__Encrypt__OpenSSL(const OCTETSTRING&, const OCTETSTRING&, const OCTETSTRING&)':
TCCOpenSecurity.cc:613:22: warning: 'int AES_set_encrypt_key(const unsigned char*, int, AES_KEY*)' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
  613 |   AES_set_encrypt_key(key, key_len_bit, &enc_key);
      |   ~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~
/usr/include/openssl/aes.h:51:5: note: declared here
   51 | int AES_set_encrypt_key(const unsigned char *userKey, const int bits,
      |     ^~~~~~~~~~~~~~~~~~~
TCCOpenSecurity.cc:615:18: warning: 'void AES_cbc_encrypt(const unsigned char*, unsigned char*, size_t, const AES_KEY*, unsigned char*, int)' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
  615 |   AES_cbc_encrypt(data, enc_data,
      |   ~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~
  616 |     data_len, &enc_key,
      |     ~~~~~~~~~~~~~~~~~~~
  617 |     k_iv, AES_ENCRYPT);
      |     ~~~~~~~~~~~~~~~~~~
/usr/include/openssl/aes.h:66:6: note: declared here
   66 | void AES_cbc_encrypt(const unsigned char *in, unsigned char *out,
      |      ^~~~~~~~~~~~~~~
TCCOpenSecurity.cc: In function 'OCTETSTRING TCCOpenSecurity__Functions::f__AES__CBC__Decrypt__OpenSSL(const OCTETSTRING&, const OCTETSTRING&, const OCTETSTRING&)':
TCCOpenSecurity.cc:659:22: warning: 'int AES_set_decrypt_key(const unsigned char*, int, AES_KEY*)' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
  659 |   AES_set_decrypt_key(key, key_len_bit, &dec_key);
      |   ~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~
/usr/include/openssl/aes.h:54:5: note: declared here
   54 | int AES_set_decrypt_key(const unsigned char *userKey, const int bits,
      |     ^~~~~~~~~~~~~~~~~~~
TCCOpenSecurity.cc:661:18: warning: 'void AES_cbc_encrypt(const unsigned char*, unsigned char*, size_t, const AES_KEY*, unsigned char*, int)' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
  661 |   AES_cbc_encrypt(data, dec_data,
      |   ~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~
  662 |     data_len, &dec_key,
      |     ~~~~~~~~~~~~~~~~~~~
  663 |     k_iv, AES_DECRYPT);
      |     ~~~~~~~~~~~~~~~~~~
/usr/include/openssl/aes.h:66:6: note: declared here
   66 | void AES_cbc_encrypt(const unsigned char *in, unsigned char *out,
      |      ^~~~~~~~~~~~~~~
TCCOpenSecurity.cc: In function 'INTEGER TCCOpenSecurity__Functions::ef__DH__generate__private__public__keys(const INTEGER&, OCTETSTRING&, OCTETSTRING&)':
TCCOpenSecurity.cc:1124:18: warning: 'DH* DH_new()' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
 1124 |   DH* dh = DH_new();
      |            ~~~~~~^~
In file included from TCCOpenSecurity.cc:24:
/usr/include/openssl/dh.h:203:27: note: declared here
  203 | OSSL_DEPRECATEDIN_3_0 DH *DH_new(void);
      |                           ^~~~~~
TCCOpenSecurity.cc:1134:14: warning: 'void DH_free(DH*)' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
 1134 |       DH_free(dh);
      |       ~~~~~~~^~~~
/usr/include/openssl/dh.h:204:28: note: declared here
  204 | OSSL_DEPRECATEDIN_3_0 void DH_free(DH *dh);
      |                            ^~~~~~~
TCCOpenSecurity.cc:1144:14: warning: 'int DH_set0_pqg(DH*, BIGNUM*, BIGNUM*, BIGNUM*)' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
 1144 |   DH_set0_pqg(dh, prime, NULL, gen);
      |   ~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~
/usr/include/openssl/dh.h:259:27: note: declared here
  259 | OSSL_DEPRECATEDIN_3_0 int DH_set0_pqg(DH *dh, BIGNUM *p, BIGNUM *q, BIGNUM *g);
      |                           ^~~~~~~~~~~
TCCOpenSecurity.cc:1150:18: warning: 'int DH_generate_key(DH*)' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
 1150 |   DH_generate_key(dh);
      |   ~~~~~~~~~~~~~~~^~~~
/usr/include/openssl/dh.h:227:27: note: declared here
  227 | OSSL_DEPRECATEDIN_3_0 int DH_generate_key(DH *dh);
      |                           ^~~~~~~~~~~~~~~
TCCOpenSecurity.cc:1155:14: warning: 'void DH_get0_key(const DH*, const BIGNUM**, const BIGNUM**)' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
 1155 |   DH_get0_key(dh, &pubk, &privk);
      |   ~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~
/usr/include/openssl/dh.h:260:28: note: declared here
  260 | OSSL_DEPRECATEDIN_3_0 void DH_get0_key(const DH *dh, const BIGNUM **pub_key,
      |                            ^~~~~~~~~~~
TCCOpenSecurity.cc:1172:14: warning: 'void DH_free(DH*)' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
 1172 |       DH_free(dh);
      |       ~~~~~~~^~~~
/usr/include/openssl/dh.h:204:28: note: declared here
  204 | OSSL_DEPRECATEDIN_3_0 void DH_free(DH *dh);
      |                            ^~~~~~~
TCCOpenSecurity.cc:1187:14: warning: 'void DH_free(DH*)' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
 1187 |       DH_free(dh);
      |       ~~~~~~~^~~~
/usr/include/openssl/dh.h:204:28: note: declared here
  204 | OSSL_DEPRECATEDIN_3_0 void DH_free(DH *dh);
      |                            ^~~~~~~
TCCOpenSecurity.cc:1191:10: warning: 'void DH_free(DH*)' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
 1191 |   DH_free(dh);
      |   ~~~~~~~^~~~
/usr/include/openssl/dh.h:204:28: note: declared here
  204 | OSSL_DEPRECATEDIN_3_0 void DH_free(DH *dh);
      |                            ^~~~~~~
TCCOpenSecurity.cc: In function 'OCTETSTRING TCCOpenSecurity__Functions::ef__DH__shared__secret(const OCTETSTRING&, const OCTETSTRING&)':
TCCOpenSecurity.cc:1227:18: warning: 'DH* DH_new()' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
 1227 |   DH* dh = DH_new();
      |            ~~~~~~^~
/usr/include/openssl/dh.h:203:27: note: declared here
  203 | OSSL_DEPRECATEDIN_3_0 DH *DH_new(void);
      |                           ^~~~~~
TCCOpenSecurity.cc:1237:14: warning: 'void DH_free(DH*)' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
 1237 |       DH_free(dh);
      |       ~~~~~~~^~~~
/usr/include/openssl/dh.h:204:28: note: declared here
  204 | OSSL_DEPRECATEDIN_3_0 void DH_free(DH *dh);
      |                            ^~~~~~~
TCCOpenSecurity.cc:1247:14: warning: 'int DH_set0_pqg(DH*, BIGNUM*, BIGNUM*, BIGNUM*)' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
 1247 |   DH_set0_pqg(dh, prime, NULL, gen);
      |   ~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~
/usr/include/openssl/dh.h:259:27: note: declared here
  259 | OSSL_DEPRECATEDIN_3_0 int DH_set0_pqg(DH *dh, BIGNUM *p, BIGNUM *q, BIGNUM *g);
      |                           ^~~~~~~~~~~
TCCOpenSecurity.cc:1259:14: warning: 'int DH_set0_key(DH*, BIGNUM*, BIGNUM*)' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
 1259 |   DH_set0_key(dh, pub_key, priv_key );
      |   ~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
/usr/include/openssl/dh.h:262:27: note: declared here
  262 | OSSL_DEPRECATEDIN_3_0 int DH_set0_key(DH *dh, BIGNUM *pub_key, BIGNUM *priv_key);
      |                           ^~~~~~~~~~~
TCCOpenSecurity.cc:1265:20: warning: 'int DH_compute_key(unsigned char*, const BIGNUM*, DH*)' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
 1265 |   if(DH_compute_key(shared_secret, pub_key, dh))
      |      ~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~
/usr/include/openssl/dh.h:228:27: note: declared here
  228 | OSSL_DEPRECATEDIN_3_0 int DH_compute_key(unsigned char *key,
      |                           ^~~~~~~~~~~~~~
TCCOpenSecurity.cc:1267:12: warning: 'void DH_free(DH*)' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
 1267 |     DH_free(dh);
      |     ~~~~~~~^~~~
/usr/include/openssl/dh.h:204:28: note: declared here
  204 | OSSL_DEPRECATEDIN_3_0 void DH_free(DH *dh);
      |                            ^~~~~~~
TCCOpenSecurity.cc:1271:10: warning: 'void DH_free(DH*)' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
 1271 |   DH_free(dh);
      |   ~~~~~~~^~~~
/usr/include/openssl/dh.h:204:28: note: declared here
  204 | OSSL_DEPRECATEDIN_3_0 void DH_free(DH *dh);
      |                            ^~~~~~~
TCCOpenSecurity.cc: In function 'OCTETSTRING TCCOpenSecurity__Functions::f__AES__ECB__128__Encrypt__OpenSSL(const OCTETSTRING&, const OCTETSTRING&)':
TCCOpenSecurity.cc:1311:22: warning: 'int AES_set_encrypt_key(const unsigned char*, int, AES_KEY*)' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
 1311 |   AES_set_encrypt_key((const unsigned char*)p_key,128,&aes_k);
      |   ~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/usr/include/openssl/aes.h:51:5: note: declared here
   51 | int AES_set_encrypt_key(const unsigned char *userKey, const int bits,
      |     ^~~~~~~~~~~~~~~~~~~
TCCOpenSecurity.cc:1318:18: warning: 'void AES_encrypt(const unsigned char*, unsigned char*, const AES_KEY*)' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
 1318 |       AES_encrypt(data+(i*AES_BLOCK_SIZE),outbuf+(i*AES_BLOCK_SIZE),&aes_k);
      |       ~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/usr/include/openssl/aes.h:57:6: note: declared here
   57 | void AES_encrypt(const unsigned char *in, unsigned char *out,
      |      ^~~~~~~~~~~
TCCOpenSecurity.cc:1320:18: warning: 'void AES_encrypt(const unsigned char*, unsigned char*, const AES_KEY*)' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
 1320 |       AES_encrypt(data+(i*AES_BLOCK_SIZE),outbuf+(i*AES_BLOCK_SIZE),&aes_k);
      |       ~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/usr/include/openssl/aes.h:57:6: note: declared here
   57 | void AES_encrypt(const unsigned char *in, unsigned char *out,
      |      ^~~~~~~~~~~
TCCOpenSecurity.cc: In function 'OCTETSTRING TCCOpenSecurity__Functions::f__AES__ECB__128__Decrypt__OpenSSL(const OCTETSTRING&, const OCTETSTRING&)':
TCCOpenSecurity.cc:1363:22: warning: 'int AES_set_decrypt_key(const unsigned char*, int, AES_KEY*)' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
 1363 |   AES_set_decrypt_key((const unsigned char*)p_key,128,&aes_k);
      |   ~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/usr/include/openssl/aes.h:54:5: note: declared here
   54 | int AES_set_decrypt_key(const unsigned char *userKey, const int bits,
      |     ^~~~~~~~~~~~~~~~~~~
TCCOpenSecurity.cc:1370:18: warning: 'void AES_decrypt(const unsigned char*, unsigned char*, const AES_KEY*)' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
 1370 |       AES_decrypt(data+(i*AES_BLOCK_SIZE),outbuf+(i*AES_BLOCK_SIZE),&aes_k);
      |       ~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/usr/include/openssl/aes.h:60:6: note: declared here
   60 | void AES_decrypt(const unsigned char *in, unsigned char *out,
      |      ^~~~~~~~~~~
TCCOpenSecurity.cc:1372:18: warning: 'void AES_decrypt(const unsigned char*, unsigned char*, const AES_KEY*)' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
 1372 |       AES_decrypt(data+(i*AES_BLOCK_SIZE),outbuf+(i*AES_BLOCK_SIZE),&aes_k);
      |       ~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/usr/include/openssl/aes.h:60:6: note: declared here
   60 | void AES_decrypt(const unsigned char *in, unsigned char *out,
      |      ^~~~~~~~~~~
TCCOpenSecurity.cc: In function 'OCTETSTRING TCCOpenSecurity__Functions::f__AES__CTR__128__Encrypt__Decrypt__OpenSSL(const OCTETSTRING&, const OCTETSTRING&, const OCTETSTRING&)':
TCCOpenSecurity.cc:1389:22: warning: 'int AES_set_encrypt_key(const unsigned char*, int, AES_KEY*)' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
 1389 |   AES_set_encrypt_key((const unsigned char*)p_key,128,&aes_k);
      |   ~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/usr/include/openssl/aes.h:51:5: note: declared here
   51 | int AES_set_encrypt_key(const unsigned char *userKey, const int bits,
      |     ^~~~~~~~~~~~~~~~~~~
TCCOpenSecurity.cc:1401:120: warning: 'void AES_encrypt(const unsigned char*, unsigned char*, const AES_KEY*)' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
 1401 |    CRYPTO_ctr128_encrypt((const unsigned char*)p_data, enc_data, data_len, &aes_k, k_iv,ecount_buf , &num, (block128_f)AES_encrypt);
      |                                                                                                                        ^~~~~~~~~~~
/usr/include/openssl/aes.h:57:6: note: declared here
   57 | void AES_encrypt(const unsigned char *in, unsigned char *out,
      |      ^~~~~~~~~~~
  CCLD     Osmocom_CTRL_Functions.so
  CCLD     Osmocom_CTRL_Types.so
  CCLD     Osmocom_Types.so
  CCLD     Osmocom_VTY_Functions.so
  CCLD     RTP_CodecPort.so
  CCLD     RTP_Types.so
  CCLD     SDP_Templates.so
  CCLD     SDP_Types.so
  CCLD     SIP_Emulation.so
  CCLD     SIP_Tests.so
  CCLD     SIP_Templates.so
  CCLD     SIPmsg_PortType.so
  CCLD     SIPmsg_Types.so
  CCLD     Socket_API_Definitions.so
  CCLD     TCCConversion_Functions.so
  CCLD     TCCDateTime_Functions.so
  CCLD     TCCInterface_Functions.so
  CCLD     TCCOpenSecurity_Functions.so
  CCLD     TELNETasp_PortType.so
  CCLD     UD_PortType.so
  CCLD     UD_Types.so
  CCLD     GSM_Types_part_1.so
  CCLD     GSM_Types_part_2.so
  CCLD     GSM_Types_part_3.so
  CCLD     GSM_Types_part_4.so
  CCLD     GSM_Types_part_5.so
  CCLD     GSM_Types_part_6.so
  CCLD     General_Types_part_1.so
  CCLD     GSM_Types_part_7.so
  CCLD     General_Types_part_2.so
  CCLD     General_Types_part_3.so
  CCLD     General_Types_part_4.so
  CCLD     General_Types_part_5.so
  CCLD     General_Types_part_6.so
  CCLD     General_Types_part_7.so
  CCLD     IPA_CodecPort_part_1.so
  CCLD     IPA_CodecPort_part_2.so
  CCLD     IPA_CodecPort_part_3.so
  CCLD     IPA_CodecPort_part_4.so
  CCLD     IPA_CodecPort_part_5.so
  CCLD     IPA_CodecPort_part_6.so
  CCLD     IPA_CodecPort_part_7.so
  CCLD     IPA_CodecPort_CtrlFunct_part_1.so
  CCLD     IPA_CodecPort_CtrlFunct_part_2.so
  CCLD     IPA_CodecPort_CtrlFunct_part_3.so
  CCLD     IPA_CodecPort_CtrlFunct_part_4.so
  CCLD     IPA_CodecPort_CtrlFunct_part_5.so
  CCLD     IPA_CodecPort_CtrlFunct_part_6.so
  CCLD     IPA_CodecPort_CtrlFunct_part_7.so
  CCLD     IPA_Types_part_1.so
  CCLD     IPA_Types_part_2.so
  CCLD     IPA_Types_part_3.so
  CCLD     IPA_Types_part_4.so
  CCLD     IPA_Types_part_5.so
  CCLD     IPA_Types_part_6.so
  CCLD     IPA_Types_part_7.so
  CCLD     IPL4asp_Functions_part_2.so
  CCLD     IPL4asp_Functions_part_1.so
  CCLD     IPL4asp_Functions_part_3.so
  CCLD     IPL4asp_Functions_part_4.so
  CCLD     IPL4asp_Functions_part_5.so
  CCLD     IPL4asp_Functions_part_6.so
  CCLD     IPL4asp_Functions_part_7.so
  CCLD     IPL4asp_PortType_part_1.so
  CCLD     IPL4asp_PortType_part_2.so
  CCLD     IPL4asp_PortType_part_3.so
  CCLD     IPL4asp_PortType_part_4.so
  CCLD     IPL4asp_PortType_part_5.so
  CCLD     IPL4asp_PortType_part_6.so
  CCLD     IPL4asp_PortType_part_7.so
  CCLD     IPL4asp_Types_part_1.so
  CCLD     IPL4asp_Types_part_2.so
  CCLD     IPL4asp_Types_part_3.so
  CCLD     IPL4asp_Types_part_4.so
  CCLD     IPL4asp_Types_part_5.so
  CCLD     IPL4asp_Types_part_6.so
  CCLD     IPL4asp_Types_part_7.so
  CCLD     MNCC_CodecPort_part_1.so
  CCLD     MNCC_CodecPort_part_2.so
  CCLD     MNCC_CodecPort_part_3.so
  CCLD     MNCC_CodecPort_part_4.so
  CCLD     MNCC_CodecPort_part_5.so
  CCLD     MNCC_CodecPort_part_6.so
  CCLD     MNCC_CodecPort_part_7.so
  CCLD     MNCC_Emulation_part_1.so
  CCLD     MNCC_Emulation_part_2.so
  CCLD     MNCC_Emulation_part_3.so
  CCLD     MNCC_Emulation_part_4.so
  CCLD     MNCC_Emulation_part_5.so
  CCLD     MNCC_Emulation_part_6.so
  CCLD     MNCC_Emulation_part_7.so
  CCLD     MNCC_Types_part_1.so
  CCLD     MNCC_Types_part_2.so
  CCLD     MNCC_Types_part_3.so
  CCLD     MNCC_Types_part_4.so
  CCLD     MNCC_Types_part_5.so
  CCLD     MNCC_Types_part_6.so
  CCLD     MNCC_Types_part_7.so
  CCLD     Misc_Helpers_part_1.so
  CCLD     Misc_Helpers_part_2.so
  CCLD     Misc_Helpers_part_3.so
  CCLD     Misc_Helpers_part_4.so
  CCLD     Misc_Helpers_part_5.so
  CCLD     Misc_Helpers_part_6.so
  CCLD     Misc_Helpers_part_7.so
  CCLD     Native_Functions_part_1.so
  CCLD     Native_Functions_part_2.so
  CCLD     Native_Functions_part_3.so
  CCLD     Native_Functions_part_4.so
  CCLD     Native_Functions_part_5.so
  CCLD     Native_Functions_part_6.so
  CCLD     Native_Functions_part_7.so
  CCLD     Osmocom_CTRL_Adapter_part_1.so
  CCLD     Osmocom_CTRL_Adapter_part_2.so
  CCLD     Osmocom_CTRL_Adapter_part_3.so
  CCLD     Osmocom_CTRL_Adapter_part_4.so
  CCLD     Osmocom_CTRL_Adapter_part_5.so
  CCLD     Osmocom_CTRL_Adapter_part_6.so
  CCLD     Osmocom_CTRL_Adapter_part_7.so
  CCLD     Osmocom_CTRL_Functions_part_1.so
  CCLD     Osmocom_CTRL_Functions_part_2.so
  CCLD     Osmocom_CTRL_Functions_part_3.so
  CCLD     Osmocom_CTRL_Functions_part_4.so
  CCLD     Osmocom_CTRL_Functions_part_5.so
  CCLD     Osmocom_CTRL_Functions_part_6.so
  CCLD     Osmocom_CTRL_Functions_part_7.so
  CCLD     Osmocom_CTRL_Types_part_1.so
  CCLD     Osmocom_CTRL_Types_part_2.so
  CCLD     Osmocom_CTRL_Types_part_3.so
  CCLD     Osmocom_CTRL_Types_part_4.so
  CCLD     Osmocom_CTRL_Types_part_6.so
  CCLD     Osmocom_CTRL_Types_part_5.so
  CCLD     Osmocom_CTRL_Types_part_7.so
  CCLD     Osmocom_Types_part_1.so
  CCLD     Osmocom_Types_part_2.so
  CCLD     Osmocom_Types_part_3.so
  CCLD     Osmocom_Types_part_4.so
  CCLD     Osmocom_Types_part_5.so
  CCLD     Osmocom_Types_part_6.so
  CCLD     Osmocom_Types_part_7.so
  CCLD     Osmocom_VTY_Functions_part_1.so
  CCLD     Osmocom_VTY_Functions_part_2.so
  CCLD     Osmocom_VTY_Functions_part_3.so
  CCLD     Osmocom_VTY_Functions_part_4.so
  CCLD     Osmocom_VTY_Functions_part_6.so
  CCLD     Osmocom_VTY_Functions_part_5.so
  CCLD     Osmocom_VTY_Functions_part_7.so
  CCLD     RTP_CodecPort_part_1.so
  CCLD     RTP_CodecPort_part_2.so
  CCLD     RTP_CodecPort_part_3.so
  CCLD     RTP_CodecPort_part_4.so
  CCLD     RTP_CodecPort_part_5.so
  CCLD     RTP_CodecPort_part_6.so
  CCLD     RTP_CodecPort_part_7.so
  CCLD     RTP_Types_part_1.so
  CCLD     RTP_Types_part_2.so
  CCLD     RTP_Types_part_3.so
  CCLD     RTP_Types_part_4.so
  CCLD     RTP_Types_part_5.so
  CCLD     RTP_Types_part_6.so
  CCLD     RTP_Types_part_7.so
  CCLD     SDP_Templates_part_1.so
  CCLD     SDP_Templates_part_2.so
  CCLD     SDP_Templates_part_3.so
  CCLD     SDP_Templates_part_4.so
  CCLD     SDP_Templates_part_5.so
  CCLD     SDP_Templates_part_6.so
  CCLD     SDP_Types_part_1.so
  CCLD     SDP_Types_part_2.so
  CCLD     SDP_Types_part_3.so
  CCLD     SDP_Templates_part_7.so
  CCLD     SDP_Types_part_4.so
  CCLD     SDP_Types_part_5.so
  CCLD     SDP_Types_part_6.so
  CCLD     SDP_Types_part_7.so
  CCLD     SIP_Emulation_part_1.so
  CCLD     SIP_Emulation_part_2.so
  CCLD     SIP_Emulation_part_3.so
  CCLD     SIP_Emulation_part_4.so
  CCLD     SIP_Emulation_part_5.so
  CCLD     SIP_Emulation_part_6.so
  CCLD     SIP_Emulation_part_7.so
  CCLD     SIP_Templates_part_1.so
  CCLD     SIP_Templates_part_2.so
  CCLD     SIP_Templates_part_3.so
  CCLD     SIP_Templates_part_4.so
  CCLD     SIP_Templates_part_5.so
  CCLD     SIP_Templates_part_6.so
  CCLD     SIP_Templates_part_7.so
  CCLD     SIP_Tests_part_1.so
  CCLD     SIP_Tests_part_2.so
  CCLD     SIP_Tests_part_4.so
  CCLD     SIP_Tests_part_3.so
  CCLD     SIP_Tests_part_5.so
  CCLD     SIP_Tests_part_6.so
  CCLD     SIP_Tests_part_7.so
  CCLD     SIPmsg_PortType_part_3.so
  CCLD     SIPmsg_PortType_part_2.so
  CCLD     SIPmsg_PortType_part_1.so
  CCLD     SIPmsg_PortType_part_4.so
  CCLD     SIPmsg_PortType_part_5.so
  CCLD     SIPmsg_PortType_part_6.so
  CCLD     SIPmsg_PortType_part_7.so
  CCLD     SIPmsg_Types_part_4.so
  CCLD     SIPmsg_Types_part_3.so
  CCLD     SIPmsg_Types_part_5.so
  CCLD     SIPmsg_Types_part_1.so
  CCLD     SIPmsg_Types_part_6.so
  CCLD     SIPmsg_Types_part_2.so
  CCLD     SIPmsg_Types_part_7.so
  CCLD     Socket_API_Definitions_part_1.so
  CCLD     Socket_API_Definitions_part_2.so
  CCLD     Socket_API_Definitions_part_3.so
  CCLD     Socket_API_Definitions_part_4.so
  CCLD     Socket_API_Definitions_part_5.so
  CCLD     Socket_API_Definitions_part_6.so
  CCLD     Socket_API_Definitions_part_7.so
  CCLD     TCCConversion_Functions_part_1.so
  CCLD     TCCConversion_Functions_part_2.so
  CCLD     TCCConversion_Functions_part_3.so
  CCLD     TCCConversion_Functions_part_4.so
  CCLD     TCCConversion_Functions_part_5.so
  CCLD     TCCConversion_Functions_part_6.so
  CCLD     TCCConversion_Functions_part_7.so
  CCLD     TCCDateTime_Functions_part_1.so
  CCLD     TCCDateTime_Functions_part_2.so
  CCLD     TCCDateTime_Functions_part_3.so
  CCLD     TCCDateTime_Functions_part_4.so
  CCLD     TCCDateTime_Functions_part_5.so
  CCLD     TCCDateTime_Functions_part_6.so
  CCLD     TCCDateTime_Functions_part_7.so
  CCLD     TCCInterface_Functions_part_1.so
  CCLD     TCCInterface_Functions_part_2.so
  CCLD     TCCInterface_Functions_part_3.so
  CCLD     TCCInterface_Functions_part_4.so
  CCLD     TCCInterface_Functions_part_5.so
  CCLD     TCCInterface_Functions_part_6.so
  CCLD     TCCInterface_Functions_part_7.so
  CCLD     TCCOpenSecurity_Functions_part_1.so
  CCLD     TCCOpenSecurity_Functions_part_2.so
  CCLD     TCCOpenSecurity_Functions_part_4.so
  CCLD     TCCOpenSecurity_Functions_part_3.so
  CCLD     TCCOpenSecurity_Functions_part_5.so
  CCLD     TCCOpenSecurity_Functions_part_6.so
  CCLD     TCCOpenSecurity_Functions_part_7.so
  CCLD     TELNETasp_PortType_part_1.so
  CCLD     TELNETasp_PortType_part_2.so
  CCLD     TELNETasp_PortType_part_3.so
  CCLD     TELNETasp_PortType_part_4.so
  CCLD     TELNETasp_PortType_part_5.so
  CCLD     TELNETasp_PortType_part_7.so
  CCLD     TELNETasp_PortType_part_6.so
  CCLD     UD_PortType_part_1.so
  CCLD     UD_PortType_part_2.so
  CCLD     UD_PortType_part_3.so
  CCLD     UD_PortType_part_4.so
  CCLD     UD_PortType_part_5.so
  CCLD     UD_PortType_part_6.so
  CCLD     UD_PortType_part_7.so
  CCLD     UD_Types_part_1.so
  CCLD     UD_Types_part_2.so
  CCLD     UD_Types_part_3.so
  CCLD     UD_Types_part_4.so
  CCLD     UD_Types_part_5.so
  CCLD     UD_Types_part_6.so
  CCLD     UD_Types_part_7.so
  CCLD     IPA_Emulation.so
  CCLD     IPA_Emulation_part_1.so
  CCLD     IPA_Emulation_part_2.so
  CCLD     IPA_Emulation_part_3.so
  CCLD     IPA_Emulation_part_4.so
  CCLD     IPA_Emulation_part_5.so
  CCLD     IPA_Emulation_part_6.so
  CCLD     SDP_parse_.tab.so
  CCLD     IPA_Emulation_part_7.so
  CCLD     SIP_parse_.tab.so
  CCLD     lex.SDP_parse_.so
  CCLD     IPA_CodecPort_CtrlFunctDef.so
  CCLD     lex.SIP_parse_.so
  CCLD     IPL4asp_PT.so
  CCLD     IPL4asp_discovery.so
  CCLD     MNCC_EncDec.so
  CCLD     Native_FunctionDefs.so
  CCLD     RTP_CodecPort_CtrlFunctDef.so
  CCLD     RTP_EncDec.so
  CCLD     SDP_EncDec.so
  CCLD     SIPmsg_PT.so
  CCLD     TCCConversion.so
  CCLD     TCCInterface.so
  CCLD     TCCOpenSecurity.so
  CCLD     TCCDateTime.so
  CCLD     TELNETasp_PT.so
  CCLD     UD_PT.so
  CCLD     SIP_Tests
make[1]: Leaving directory '/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/_cache/podman/ttcn3/sip'
[testenv] + ['podman', 'exec', '-e', 'CCACHE_DIR=/home/osmocom-build/ccache/testenv', '-e', 'TESTENV_CACHE_DIR=/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/_cache', '-e', 'TESTENV_SRC_DIR=/home/osmocom-build/jenkins/workspace', '-e', 'TERM=dumb', '-e', 'PATH=/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/_testenv/data/scripts:/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/_testenv/data/scripts/qemu:/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/sip:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin', '-e', 'HOME=/home/osmocom-build', '-t', 'testenv-sip-osmocom-latest-20250425-1235-648390b5-0', 'sh', '-c', "echo 'deb [signed-by=/obs.key] https://downloads.osmocom.org/packages/osmocom:/latest/Debian_12/ ./' > /etc/apt/sources.list.d/osmocom.list"]
[testenv] + ['podman', 'exec', '-e', 'CCACHE_DIR=/home/osmocom-build/ccache/testenv', '-e', 'TESTENV_CACHE_DIR=/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/_cache', '-e', 'TESTENV_SRC_DIR=/home/osmocom-build/jenkins/workspace', '-e', 'TERM=dumb', '-e', 'PATH=/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/_testenv/data/scripts:/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/_testenv/data/scripts/qemu:/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/sip:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin', '-e', 'HOME=/home/osmocom-build', '-t', 'testenv-sip-osmocom-latest-20250425-1235-648390b5-0', 'apt-get', '-q', 'update']
Hit:1 http://deb.debian.org/debian bookworm InRelease
Hit:2 http://deb.debian.org/debian bookworm-updates InRelease
Get:3 https://downloads.osmocom.org/packages/osmocom:/latest/Debian_12 ./ InRelease [1580 B]
Hit:4 http://deb.debian.org/debian-security bookworm-security InRelease
Get:5 https://downloads.osmocom.org/packages/osmocom:/latest/Debian_12 ./ Packages [196 kB]
Fetched 198 kB in 0s (418 kB/s)
Reading package lists...
[testenv] + ['podman', 'exec', '-e', 'CCACHE_DIR=/home/osmocom-build/ccache/testenv', '-e', 'TESTENV_CACHE_DIR=/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/_cache', '-e', 'TESTENV_SRC_DIR=/home/osmocom-build/jenkins/workspace', '-e', 'TERM=dumb', '-e', 'PATH=/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/_testenv/data/scripts:/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/_testenv/data/scripts/qemu:/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/sip:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin', '-e', 'HOME=/home/osmocom-build', '-t', 'testenv-sip-osmocom-latest-20250425-1235-648390b5-0', 'sh', '-c', 'apt-cache pkgnames | grep -- -dbg > /home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/_cache/podman/dbg_pkgs_all']
[testenv] + ['podman', 'exec', '-e', 'CCACHE_DIR=/home/osmocom-build/ccache/testenv', '-e', 'TESTENV_CACHE_DIR=/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/_cache', '-e', 'TESTENV_SRC_DIR=/home/osmocom-build/jenkins/workspace', '-e', 'TERM=dumb', '-e', 'PATH=/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/_testenv/data/scripts:/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/_testenv/data/scripts/qemu:/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/sip:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin', '-e', 'HOME=/home/osmocom-build', '-t', 'testenv-sip-osmocom-latest-20250425-1235-648390b5-0', 'apt-rdepends', 'osmo-sip-connector']
[testenv] osmo-sip-connector -> osmo-sip-connector: installing osmo-sip-connector-dbg
[testenv] osmo-sip-connector -> libc6: installing libc6-dbg
[testenv] osmo-sip-connector -> libosmocore22: installing libosmocore-dbg
[testenv] Installing packages: osmo-sip-connector, osmo-sip-connector-dbg, libc6-dbg, libosmocore-dbg
[testenv] + ['podman', 'exec', '-e', 'CCACHE_DIR=/home/osmocom-build/ccache/testenv', '-e', 'TESTENV_CACHE_DIR=/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/_cache', '-e', 'TESTENV_SRC_DIR=/home/osmocom-build/jenkins/workspace', '-e', 'TERM=dumb', '-e', 'PATH=/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/_testenv/data/scripts:/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/_testenv/data/scripts/qemu:/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/sip:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin', '-e', 'HOME=/home/osmocom-build', '-t', 'testenv-sip-osmocom-latest-20250425-1235-648390b5-0', 'apt-get', '-q', 'install', '-y', '--no-install-recommends', 'osmo-sip-connector', 'osmo-sip-connector-dbg', 'libc6-dbg', 'libosmocore-dbg']
Reading package lists...
Building dependency tree...
The following additional packages will be installed:
  libc-bin libc-dev-bin libc6 libc6-dev libosmocodec4 libosmocoding0
  libosmocore libosmocore22 libosmoctrl0 libosmogb14 libosmogsm20 libosmoisdn0
  libosmosim2 libosmousb0 libosmovty13 osmocom-latest
Suggested packages:
  glibc-doc libc-l10n locales libnss-nis libnss-nisplus manpages-dev
Recommended packages:
  manpages manpages-dev libc-devtools
The following NEW packages will be installed:
  libc6-dbg libosmocodec4 libosmocoding0 libosmocore libosmocore-dbg
  libosmocore22 libosmoctrl0 libosmogb14 libosmogsm20 libosmoisdn0 libosmosim2
  libosmousb0 libosmovty13 osmo-sip-connector osmo-sip-connector-dbg
  osmocom-latest
The following packages will be upgraded:
  libc-bin libc-dev-bin libc6 libc6-dev
4 upgraded, 16 newly installed, 0 to remove and 85 not upgraded.
Need to get 16.1 MB of archives.
After this operation, 16.6 MB of additional disk space will be used.
Get:1 http://deb.debian.org/debian bookworm/main amd64 libc6-dev amd64 2.36-9+deb12u10 [1903 kB]
Get:2 https://downloads.osmocom.org/packages/osmocom:/latest/Debian_12 ./ osmocom-latest 1.0.0 [1156 B]
Get:3 https://downloads.osmocom.org/packages/osmocom:/latest/Debian_12 ./ libosmocore22 1.11.0 [170 kB]
Get:4 https://downloads.osmocom.org/packages/osmocom:/latest/Debian_12 ./ libosmocodec4 1.11.0 [51.8 kB]
Get:5 https://downloads.osmocom.org/packages/osmocom:/latest/Debian_12 ./ libosmoisdn0 1.11.0 [71.0 kB]
Get:6 https://downloads.osmocom.org/packages/osmocom:/latest/Debian_12 ./ libosmogsm20 1.11.0 [228 kB]
Get:7 https://downloads.osmocom.org/packages/osmocom:/latest/Debian_12 ./ libosmocoding0 1.11.0 [71.5 kB]
Get:8 https://downloads.osmocom.org/packages/osmocom:/latest/Debian_12 ./ libosmovty13 1.11.0 [104 kB]
Get:9 https://downloads.osmocom.org/packages/osmocom:/latest/Debian_12 ./ libosmogb14 1.11.0 [178 kB]
Get:10 https://downloads.osmocom.org/packages/osmocom:/latest/Debian_12 ./ libosmoctrl0 1.11.0 [60.2 kB]
Get:11 https://downloads.osmocom.org/packages/osmocom:/latest/Debian_12 ./ libosmosim2 1.11.0 [64.1 kB]
Get:12 https://downloads.osmocom.org/packages/osmocom:/latest/Debian_12 ./ libosmousb0 1.11.0 [50.8 kB]
Get:13 https://downloads.osmocom.org/packages/osmocom:/latest/Debian_12 ./ libosmocore 1.11.0 [44.2 kB]
Get:14 http://deb.debian.org/debian bookworm/main amd64 libc-dev-bin amd64 2.36-9+deb12u10 [47.1 kB]
Get:15 http://deb.debian.org/debian bookworm/main amd64 libc6 amd64 2.36-9+deb12u10 [2757 kB]
Get:16 https://downloads.osmocom.org/packages/osmocom:/latest/Debian_12 ./ osmo-sip-connector 1.7.1 [33.0 kB]
Get:17 https://downloads.osmocom.org/packages/osmocom:/latest/Debian_12 ./ libosmocore-dbg 1.11.0 [2164 kB]
Get:18 http://deb.debian.org/debian bookworm/main amd64 libc-bin amd64 2.36-9+deb12u10 [608 kB]
Get:19 http://deb.debian.org/debian bookworm/main amd64 libc6-dbg amd64 2.36-9+deb12u10 [7385 kB]
Get:20 https://downloads.osmocom.org/packages/osmocom:/latest/Debian_12 ./ osmo-sip-connector-dbg 1.7.1 [104 kB]
Fetched 16.1 MB in 0s (88.1 MB/s)
debconf: delaying package configuration, since apt-utils is not installed
(Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 40050 files and directories currently installed.)
Preparing to unpack .../libc6-dev_2.36-9+deb12u10_amd64.deb ...
Unpacking libc6-dev:amd64 (2.36-9+deb12u10) over (2.36-9+deb12u9) ...
Preparing to unpack .../libc-dev-bin_2.36-9+deb12u10_amd64.deb ...
Unpacking libc-dev-bin (2.36-9+deb12u10) over (2.36-9+deb12u9) ...
Preparing to unpack .../libc6_2.36-9+deb12u10_amd64.deb ...
Unpacking libc6:amd64 (2.36-9+deb12u10) over (2.36-9+deb12u9) ...
Setting up libc6:amd64 (2.36-9+deb12u10) ...
(Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 40050 files and directories currently installed.)
Preparing to unpack .../libc-bin_2.36-9+deb12u10_amd64.deb ...
Unpacking libc-bin (2.36-9+deb12u10) over (2.36-9+deb12u9) ...
Setting up libc-bin (2.36-9+deb12u10) ...
Selecting previously unselected package libc6-dbg:amd64.
(Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 40050 files and directories currently installed.)
Preparing to unpack .../00-libc6-dbg_2.36-9+deb12u10_amd64.deb ...
Unpacking libc6-dbg:amd64 (2.36-9+deb12u10) ...
Selecting previously unselected package osmocom-latest.
Preparing to unpack .../01-osmocom-latest_1.0.0_amd64.deb ...
Unpacking osmocom-latest (1.0.0) ...
Selecting previously unselected package libosmocore22:amd64.
Preparing to unpack .../02-libosmocore22_1.11.0_amd64.deb ...
Unpacking libosmocore22:amd64 (1.11.0) ...
Selecting previously unselected package libosmocodec4:amd64.
Preparing to unpack .../03-libosmocodec4_1.11.0_amd64.deb ...
Unpacking libosmocodec4:amd64 (1.11.0) ...
Selecting previously unselected package libosmoisdn0:amd64.
Preparing to unpack .../04-libosmoisdn0_1.11.0_amd64.deb ...
Unpacking libosmoisdn0:amd64 (1.11.0) ...
Selecting previously unselected package libosmogsm20:amd64.
Preparing to unpack .../05-libosmogsm20_1.11.0_amd64.deb ...
Unpacking libosmogsm20:amd64 (1.11.0) ...
Selecting previously unselected package libosmocoding0:amd64.
Preparing to unpack .../06-libosmocoding0_1.11.0_amd64.deb ...
Unpacking libosmocoding0:amd64 (1.11.0) ...
Selecting previously unselected package libosmovty13:amd64.
Preparing to unpack .../07-libosmovty13_1.11.0_amd64.deb ...
Unpacking libosmovty13:amd64 (1.11.0) ...
Selecting previously unselected package libosmogb14:amd64.
Preparing to unpack .../08-libosmogb14_1.11.0_amd64.deb ...
Unpacking libosmogb14:amd64 (1.11.0) ...
Selecting previously unselected package libosmoctrl0:amd64.
Preparing to unpack .../09-libosmoctrl0_1.11.0_amd64.deb ...
Unpacking libosmoctrl0:amd64 (1.11.0) ...
Selecting previously unselected package libosmosim2:amd64.
Preparing to unpack .../10-libosmosim2_1.11.0_amd64.deb ...
Unpacking libosmosim2:amd64 (1.11.0) ...
Selecting previously unselected package libosmousb0:amd64.
Preparing to unpack .../11-libosmousb0_1.11.0_amd64.deb ...
Unpacking libosmousb0:amd64 (1.11.0) ...
Selecting previously unselected package libosmocore.
Preparing to unpack .../12-libosmocore_1.11.0_amd64.deb ...
Unpacking libosmocore (1.11.0) ...
Selecting previously unselected package osmo-sip-connector.
Preparing to unpack .../13-osmo-sip-connector_1.7.1_amd64.deb ...
Unpacking osmo-sip-connector (1.7.1) ...
Selecting previously unselected package libosmocore-dbg:amd64.
Preparing to unpack .../14-libosmocore-dbg_1.11.0_amd64.deb ...
Unpacking libosmocore-dbg:amd64 (1.11.0) ...
Selecting previously unselected package osmo-sip-connector-dbg.
Preparing to unpack .../15-osmo-sip-connector-dbg_1.7.1_amd64.deb ...
Unpacking osmo-sip-connector-dbg (1.7.1) ...
Setting up osmocom-latest (1.0.0) ...
Setting up libc6-dbg:amd64 (2.36-9+deb12u10) ...
Setting up libosmocore22:amd64 (1.11.0) ...
Setting up libosmocodec4:amd64 (1.11.0) ...
Setting up libc-dev-bin (2.36-9+deb12u10) ...
Setting up libosmovty13:amd64 (1.11.0) ...
Setting up libosmoisdn0:amd64 (1.11.0) ...
Setting up libosmousb0:amd64 (1.11.0) ...
Setting up libc6-dev:amd64 (2.36-9+deb12u10) ...
Setting up libosmogsm20:amd64 (1.11.0) ...
Setting up libosmoctrl0:amd64 (1.11.0) ...
Setting up osmo-sip-connector (1.7.1) ...
changed ownership of '/etc/osmocom/osmo-sip-connector.cfg' from root:root to osmocom:osmocom
mode of '/etc/osmocom/osmo-sip-connector.cfg' changed from 0644 (rw-r--r--) to 0660 (rw-rw----)
changed ownership of '/etc/osmocom' from root:root to root:osmocom
mode of '/etc/osmocom' changed from 0755 (rwxr-xr-x) to 2775 (rwxrwsr-x)
changed ownership of '/var/lib/osmocom' from root:root to osmocom:osmocom
Setting up libosmogb14:amd64 (1.11.0) ...
Setting up osmo-sip-connector-dbg (1.7.1) ...
Setting up libosmocoding0:amd64 (1.11.0) ...
Setting up libosmosim2:amd64 (1.11.0) ...
Setting up libosmocore (1.11.0) ...
Setting up libosmocore-dbg:amd64 (1.11.0) ...
Processing triggers for libc-bin (2.36-9+deb12u10) ...
[testenv] Preparing testdir: /home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/logs
[testenv] + ['podman', 'exec', '-e', 'CCACHE_DIR=/home/osmocom-build/ccache/testenv', '-e', 'TESTENV_CACHE_DIR=/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/_cache', '-e', 'TESTENV_SRC_DIR=/home/osmocom-build/jenkins/workspace', '-e', 'TERM=dumb', '-e', 'PATH=/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/_testenv/data/scripts:/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/_testenv/data/scripts/qemu:/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/sip:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin', '-e', 'HOME=/home/osmocom-build', '-t', 'testenv-sip-osmocom-latest-20250425-1235-648390b5-0', 'install', '-Dm644', '/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/sip/SIP_Tests.cfg', '/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/logs/testsuite/SIP_Tests.cfg']
[testenv] + ['cp', '-a', 'osmo-sip-connector.cfg', '/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/logs/sip-connector']
[testenv] + ['podman', 'exec', '-e', 'CCACHE_DIR=/home/osmocom-build/ccache/testenv', '-e', 'TESTENV_CACHE_DIR=/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/_cache', '-e', 'TESTENV_SRC_DIR=/home/osmocom-build/jenkins/workspace', '-e', 'TERM=dumb', '-e', 'PATH=/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/_testenv/data/scripts:/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/_testenv/data/scripts/qemu:/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/sip:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin', '-e', 'HOME=/home/osmocom-build', '-t', 'testenv-sip-osmocom-latest-20250425-1235-648390b5-0', 'install', '-Dm644', '/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/sip/SIP_Tests.default', '/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/logs/testsuite/SIP_Tests.default']
[testenv] + ['podman', 'exec', '-e', 'CCACHE_DIR=/home/osmocom-build/ccache/testenv', '-e', 'TESTENV_CACHE_DIR=/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/_cache', '-e', 'TESTENV_SRC_DIR=/home/osmocom-build/jenkins/workspace', '-e', 'TERM=dumb', '-e', 'PATH=/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/_testenv/data/scripts:/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/_testenv/data/scripts/qemu:/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/sip:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin', '-e', 'HOME=/home/osmocom-build', '-t', 'testenv-sip-osmocom-latest-20250425-1235-648390b5-0', 'install', '-Dm644', '/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/Common.cfg', '/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/logs/testsuite/Common.cfg']
[testenv] + ['podman', 'exec', '-e', 'CCACHE_DIR=/home/osmocom-build/ccache/testenv', '-e', 'TESTENV_CACHE_DIR=/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/_cache', '-e', 'TESTENV_SRC_DIR=/home/osmocom-build/jenkins/workspace', '-e', 'TERM=dumb', '-e', 'PATH=/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/_testenv/data/scripts:/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/_testenv/data/scripts/qemu:/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/sip:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin', '-e', 'HOME=/home/osmocom-build', '-t', 'testenv-sip-osmocom-latest-20250425-1235-648390b5-0', 'sed', '-i', 's#TTCN3_HACKS_PATH := .*#TTCN3_HACKS_PATH := "/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest"#', '/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/logs/testsuite/Common.cfg']
[testenv] Adjusting testsuite config: /home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/logs/testsuite/Common.cfg
[testenv] + ['podman', 'exec', '-e', 'CCACHE_DIR=/home/osmocom-build/ccache/testenv', '-e', 'TESTENV_CACHE_DIR=/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/_cache', '-e', 'TESTENV_SRC_DIR=/home/osmocom-build/jenkins/workspace', '-e', 'TERM=dumb', '-e', 'PATH=/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/_testenv/data/scripts:/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/_testenv/data/scripts/qemu:/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/sip:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin', '-e', 'HOME=/home/osmocom-build', '-t', 'testenv-sip-osmocom-latest-20250425-1235-648390b5-0', 'sed', '-i', '-e', 's/\\[MODULE_PARAMETERS\\]/\\[MODULE_PARAMETERS\\]\\nMisc_Helpers.mp_osmo_repo := "latest"/g', '-e', 's#../Common.cfg#Common.cfg#', '/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/logs/testsuite/Common.cfg']
[testenv] Adjusting testsuite config: /home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/logs/testsuite/SIP_Tests.cfg
[testenv] + ['podman', 'exec', '-e', 'CCACHE_DIR=/home/osmocom-build/ccache/testenv', '-e', 'TESTENV_CACHE_DIR=/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/_cache', '-e', 'TESTENV_SRC_DIR=/home/osmocom-build/jenkins/workspace', '-e', 'TERM=dumb', '-e', 'PATH=/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/_testenv/data/scripts:/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/_testenv/data/scripts/qemu:/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/sip:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin', '-e', 'HOME=/home/osmocom-build', '-t', 'testenv-sip-osmocom-latest-20250425-1235-648390b5-0', 'sed', '-i', '-e', 's/\\[MODULE_PARAMETERS\\]/\\[MODULE_PARAMETERS\\]\\nMisc_Helpers.mp_osmo_repo := "latest"/g', '-e', 's#../Common.cfg#Common.cfg#', '/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/logs/testsuite/SIP_Tests.cfg']
[testenv] Adjusting testsuite config: /home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/logs/testsuite/SIP_Tests.default
[testenv] + ['podman', 'exec', '-e', 'CCACHE_DIR=/home/osmocom-build/ccache/testenv', '-e', 'TESTENV_CACHE_DIR=/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/_cache', '-e', 'TESTENV_SRC_DIR=/home/osmocom-build/jenkins/workspace', '-e', 'TERM=dumb', '-e', 'PATH=/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/_testenv/data/scripts:/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/_testenv/data/scripts/qemu:/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/sip:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin', '-e', 'HOME=/home/osmocom-build', '-t', 'testenv-sip-osmocom-latest-20250425-1235-648390b5-0', 'sed', '-i', '-e', 's/\\[MODULE_PARAMETERS\\]/\\[MODULE_PARAMETERS\\]\\nMisc_Helpers.mp_osmo_repo := "latest"/g', '-e', 's#../Common.cfg#Common.cfg#', '/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/logs/testsuite/SIP_Tests.default']
[testenv] Running sip-connector
[testenv] + ['podman', 'exec', '-e', 'CCACHE_DIR=/home/osmocom-build/ccache/testenv', '-e', 'TESTENV_CACHE_DIR=/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/_cache', '-e', 'TESTENV_SRC_DIR=/home/osmocom-build/jenkins/workspace', '-e', 'TERM=dumb', '-e', 'PATH=/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/_testenv/data/scripts:/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/_testenv/data/scripts/qemu:/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/sip:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin', '-e', 'HOME=/home/osmocom-build', '-w', '/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/logs/sip-connector', 'testenv-sip-osmocom-latest-20250425-1235-648390b5-0', 'sh', '-c', 'osmo-sip-connector 2>&1 | tee /home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/logs/sip-connector/sip-connector.log']
[testenv] Running testsuite
20250425123515197 DLSTATS <000d> stats.c:206 Stats timer started with interval 5 sec
20250425123515197 DLGLOBAL <0004> telnet_interface.c:88 Available via telnet 127.0.0.1 4256
20250425123515197 DMNCC <0001> mncc.c:1179 Scheduling MNCC connect
20250425123515198 DSIP <0000> sip.c:741 su_source_port_create() returns 0x55aa765f0540

20250425123515198 DMNCC <0001> mncc.c:1023 Failed to connect(/tmp/mncc). Retrying
[testenv] + ['podman', 'exec', '-e', 'CCACHE_DIR=/home/osmocom-build/ccache/testenv', '-e', 'TESTENV_CACHE_DIR=/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/_cache', '-e', 'TESTENV_SRC_DIR=/home/osmocom-build/jenkins/workspace', '-e', 'TERM=dumb', '-e', 'PATH=/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/_testenv/data/scripts:/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/_testenv/data/scripts/qemu:/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/sip:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin', '-e', 'HOME=/home/osmocom-build', '-e', 'BUILDDIR=/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/_cache/podman/ttcn3', '-e', 'TTCN3_PCAP_PATH=/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/logs/testsuite', '-e', 'OSMO_SUT_HOST=127.0.0.1', '-e', 'OSMO_SUT_PORT=4256', '-w', '/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/logs/testsuite', 'testenv-sip-osmocom-latest-20250425-1235-648390b5-0', '/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/start-testsuite.sh', 'sip/SIP_Tests', 'SIP_Tests.cfg']
ttcn3_start: Starting the test suite
ttcn3_start: warning: TTCN3_DIR environment variable is not set
spawn mctr_cli SIP_Tests.cfg

*************************************************************************
* TTCN-3 Test Executor - Main Controller 2                              *
* Version: 9.0.0                                                        *
* Copyright (c) 2000-2023 Ericsson Telecom AB                           *
* All rights reserved. This program and the accompanying materials      *
* are made available under the terms of the Eclipse Public License v2.0 *
* which accompanies this distribution, and is available at              *
* https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.html            *
*************************************************************************

Using configuration file: SIP_Tests.cfg
MC@57e03c4134ee: Unix server socket created successfully.
MC@57e03c4134ee: Listening on TCP port 36789.
57e03c4134ee is the default
MC2> spawn /home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/_cache/podman/ttcn3/sip/SIP_Tests 57e03c4134ee 36789
TTCN-3 Host Controller (parallel mode), version 9.0.0
MC@57e03c4134ee: New HC connected from 10.0.2.100 [10.0.2.100]. 57e03c4134ee: Linux 6.1.0-29-amd64 on x86_64.
cmtc
MC@57e03c4134ee: Downloading configuration file to all HCs.
construct junitlogger
Initializing `JUnitLogger' (v2.0): JUnitLogger writes JUnit-compatible XML
HC@57e03c4134ee: Warning: Option `FileMask' was given more than once in section [LOGGING] of the configuration file.
HC@57e03c4134ee: Warning: Option `FileMask' was given more than once in section [LOGGING] of the configuration file.
HC@57e03c4134ee: Warning: Option `FileMask' was given more than once in section [LOGGING] of the configuration file.
HC@57e03c4134ee: Warning: Option `FileMask' was given more than once in section [LOGGING] of the configuration file.
HC@57e03c4134ee: Warning: Option `FileMask' was given more than once in section [LOGGING] of the configuration file.
MC@57e03c4134ee: Configuration file was processed on all HCs.
MC@57e03c4134ee: Creating MTC on host 10.0.2.100.
MC@57e03c4134ee: MTC is created.
MC2> smtc
Executing all items of [EXECUTE] section.
MC2> MTC@57e03c4134ee: Starting external command `/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/ttcn3-tcpdump-start.sh SIP_Tests.TC_mt_success_rel_gsm'.
------ SIP_Tests.TC_mt_success_rel_gsm ------
Fri Apr 25 12:35:15 UTC 2025
/usr/bin/dumpcap -q -s 1520 -n -i any -w "/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/logs/testsuite/SIP_Tests.TC_mt_success_rel_gsm.pcap" >/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/logs/testsuite/SIP_Tests.TC_mt_success_rel_gsm.pcap.stdout 2>/tmp/cmderr &
Waiting for packet dumper to start... 0
MTC@57e03c4134ee: External command `/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/ttcn3-tcpdump-start.sh SIP_Tests.TC_mt_success_rel_gsm' was executed successfully (exit status: 0).
MTC@57e03c4134ee: Test case TC_mt_success_rel_gsm started.
MTC@57e03c4134ee: end of f_init_mncc
SIP_Test-MNCC(3)@57e03c4134ee: Warning: Re-starting timer T, which is already active (running or expired).
SIP_Test_SIP_EMU(4)@57e03c4134ee: Warning: The maximum number of open file descriptors (1048576) is greater than FD_SETSIZE (1024). Ensure that Test Ports using Install_Handler do not try to wait for events of file descriptors with values greater than FD_SETSIZE (1024). (Current caller of Install_Handler is "SIP")
MTC@57e03c4134ee: end of f_init_sip
20250425123516513 DLGLOBAL <0004> telnet_interface.c:192 Accept()ed new telnet connection r=127.0.0.1:54912<->l=127.0.0.1:4256
MTC@57e03c4134ee: end of f_init
TC_mt_success_rel_gsm(5)@57e03c4134ee: Warning: Test port parameter local_sip_port is not supported on port SIP.
TC_mt_success_rel_gsm(5)@57e03c4134ee: Warning: Test port parameter default_local_address is not supported on port SIP.
TC_mt_success_rel_gsm(5)@57e03c4134ee: Warning: Test port parameter default_sip_protocol is not supported on port SIP.
TC_mt_success_rel_gsm(5)@57e03c4134ee: Warning: Test port parameter default_dest_port is not supported on port SIP.
TC_mt_success_rel_gsm(5)@57e03c4134ee: Warning: Test port parameter default_dest_address is not supported on port SIP.
20250425123520199 DMNCC <0001> mncc.c:1031 Reconnected to /tmp/mncc
20250425123520200 DMNCC <0001> mncc.c:1079 rx MNCC MNCC_SOCKET_HELLO
20250425123520200 DMNCC <0001> mncc.c:918 Got hello message version 8
SIP_Test-MNCC(3)@57e03c4134ee: Created MnccExpect[0] for "98766" to be handled at TC_mt_success_rel_gsm(5)
SIP_Test_SIP_EMU(4)@57e03c4134ee: Added SIP Call Table entry [0] for "FC421CC9EF96C42" at TC_mt_success_rel_gsm(5)
20250425123520210 DSIP <0000> sip.c:361 SIP event[nua_i_invite] status(100) phrase(Trying) SDP(v=0
o=Osmocom 0 0 IN IP4 1.1.1.1
s=GSM Call
c=IN IP4 1.2.3.4
t=0 0
m=audio 1234 RTP/AVP 0
a=rtpmap:0 GSM/8000
) (nil)
20250425123520210 DSIP <0000> sip.c:436 Processing INVITE Call-ID: FC421CC9EF96C42
20250425123520210 DSIP <0000> sip.c:126 Incoming call(FC421CC9EF96C42) handle(0x55aa765fbeb0)
20250425123520210 DSIP <0000> sip.c:189 SDP Extracted: IP=(1.2.3.4) PORT=(1234) PAYLOAD=(0).
20250425123520210 DAPP <0002> call.c:186 call(5001) leg(0x0x55aa765fef20) received new SDP="v=0\r\no=Osmocom 0 0 IN IP4 1.1.1.1\r\ns=GSM Call\r\nc=IN IP4 1.2.3.4\r\nt=0 0\r\nm=audio 1234 RTP/AVP 0\r\na=rtpmap:0 GSM/8000\r\n"
20250425123520210 DAPP <0002> call.c:187 call(5001) leg(0x0x55aa765fef20) replaced old SDP=""
20250425123520210 DMNCC <0001> mncc.c:137 tx MNCC MNCC_SETUP_REQ with SDP="v=0\r\no=Osmocom 0 0 IN IP4 1.1.1.1\r\ns=GSM Call\r\nc=IN IP4 1.2.3.4\r\nt=0 0\r\nm=audio 1234 RTP/AVP 0\r\na=rtpmap:0 GSM/8000\r\n"
20250425123520210 DSIP <0000> sip.c:361 SIP event[nua_i_state] status(100) phrase(Trying) SDP((null)) 0x55aa765fef20
20250425123520210 DSIP <0000> sip.c:461 Did not handle event[nua_i_state] status(100)
SIP_Test-MNCC(3)@57e03c4134ee: Found MnccExpect[0] for "98766" handled at TC_mt_success_rel_gsm(5)
SIP_Test-MNCC(3)@57e03c4134ee: Added conn table entry 0TC_mt_success_rel_gsm(5)5001
TC_mt_success_rel_gsm(5)@57e03c4134ee: SDP update from "" to "v=0\r\no=Osmocom 0 0 IN IP4 1.1.1.1\r\ns=GSM Call\r\nc=IN IP4 1.2.3.4\r\nt=0 0\r\nm=audio 1234 RTP/AVP 0\r\na=rtpmap:0 GSM/8000\r\n"
20250425123520217 DMNCC <0001> mncc.c:1076 rx MNCC MNCC_CALL_CONF_IND with SDP=""
20250425123520217 DAPP <0002> call.c:180 call(5001) leg(0x0x55aa765ff950) no new SDP in ""
20250425123520217 DAPP <0002> call.c:182 call(5001) leg(0x0x55aa765ff950) keep stored SDP=""
20250425123520217 DMNCC <0001> mncc.c:744 leg(5001) confirmed. creating RTP socket.
20250425123520217 DMNCC <0001> mncc.c:68 Starting Timer for MNCC_RTP_CREATE
20250425123520217 DMNCC <0001> mncc.c:165 tx MNCC MNCC_RTP_CREATE with SDP=""
20250425123520218 DMNCC <0001> mncc.c:1076 rx MNCC MNCC_RTP_CREATE with SDP=""
20250425123520218 DAPP <0002> call.c:180 call(5001) leg(0x0x55aa765ff950) no new SDP in ""
20250425123520218 DAPP <0002> call.c:182 call(5001) leg(0x0x55aa765ff950) keep stored SDP=""
20250425123520218 DMNCC <0001> mncc.c:464 RTP continue leg(5001) ip(5.6.7.8), port(5678) pt(0) ptm(0)
20250425123520218 DMNCC <0001> mncc.c:80 Got response(MNCC_RTP_CREATE), stopping timer on leg(5001)
20250425123520218 DMNCC <0001> mncc.c:1076 rx MNCC MNCC_ALERT_IND with SDP=""
20250425123520218 DAPP <0002> call.c:180 call(5001) leg(0x0x55aa765ff950) no new SDP in ""
20250425123520218 DAPP <0002> call.c:182 call(5001) leg(0x0x55aa765ff950) keep stored SDP=""
20250425123520218 DMNCC <0001> mncc.c:764 leg(5001) is alerting.
20250425123520218 DSIP <0000> sip.c:361 SIP event[nua_i_state] status(180) phrase(Ringing) SDP((null)) 0x55aa765fef20
20250425123520218 DSIP <0000> sip.c:461 Did not handle event[nua_i_state] status(180)
20250425123520221 DMNCC <0001> mncc.c:1076 rx MNCC MNCC_SETUP_CNF with SDP=""
20250425123520221 DAPP <0002> call.c:180 call(5001) leg(0x0x55aa765ff950) no new SDP in ""
20250425123520221 DAPP <0002> call.c:182 call(5001) leg(0x0x55aa765ff950) keep stored SDP=""
20250425123520221 DMNCC <0001> mncc.c:844 leg(5001) setup completed
20250425123520221 DMNCC <0001> mncc.c:212 SEND rtp_connect: IP=(1.2.3.4) PORT=(1234)
20250425123520221 DMNCC <0001> mncc.c:165 tx MNCC MNCC_RTP_CONNECT with SDP="v=0\r\no=Osmocom 0 0 IN IP4 1.1.1.1\r\ns=GSM Call\r\nc=IN IP4 1.2.3.4\r\nt=0 0\r\nm=audio 1234 RTP/AVP 0\r\na=rtpmap:0 GSM/8000\r\n"
20250425123520221 DMNCC <0001> mncc.c:137 tx MNCC MNCC_SETUP_COMPL_REQ with SDP=""
20250425123520221 DAPP <0002> app.c:111 Unknown ptmsg(0). call broken
20250425123520221 DSIP <0000> sip.c:361 SIP event[nua_i_state] status(200) phrase(OK) SDP((null)) 0x55aa765fef20
20250425123520221 DSIP <0000> sip.c:461 Did not handle event[nua_i_state] status(200)
20250425123520224 DSIP <0000> sip.c:361 SIP event[nua_i_ack] status(200) phrase(OK) SDP((null)) 0x55aa765fef20
20250425123520224 DSIP <0000> sip.c:361 SIP event[nua_i_state] status(200) phrase(OK) SDP((null)) 0x55aa765fef20
20250425123520224 DSIP <0000> sip.c:461 Did not handle event[nua_i_state] status(200)
20250425123520224 DSIP <0000> sip.c:361 SIP event[nua_i_active] status(200) phrase(Call active) SDP((null)) 0x55aa765fef20
20250425123520224 DSIP <0000> sip.c:461 Did not handle event[nua_i_active] status(200)
20250425123522226 DMNCC <0001> mncc.c:1076 rx MNCC MNCC_DISC_IND with SDP=""
20250425123522226 DMNCC <0001> mncc.c:634 Rcvd MNCC_DISC_IND, Cause: unknown 0x0
20250425123522226 DMNCC <0001> mncc.c:636 leg(5001) was disconnected. Releasing
20250425123522226 DMNCC <0001> mncc.c:68 Starting Timer for MNCC_REL_CNF
20250425123522226 DMNCC <0001> mncc.c:137 tx MNCC MNCC_REL_REQ with SDP=""
20250425123522226 DSIP <0000> sip.c:503 sip_release_call(): Release with MNCC cause(unknown 0x0)
20250425123522226 DSIP <0000> sip.c:479 cause2status(): Cause(unknown 0x0) not found in map.
20250425123522226 DSIP <0000> sip.c:527 Ending leg(0x55aa765fef20) in connected state.
20250425123522233 DMNCC <0001> mncc.c:1076 rx MNCC MNCC_REL_CNF with SDP=""
20250425123522233 DMNCC <0001> mncc.c:80 Got response(MNCC_REL_CNF), stopping timer on leg(5001)
20250425123522233 DMNCC <0001> mncc.c:684 leg(5001) was cnf released.
TC_mt_success_rel_gsm(5)@57e03c4134ee: setverdict(pass): none -> pass
SIP_Test-MNCC(3)@57e03c4134ee: Deleted conn table entry 0TC_mt_success_rel_gsm(5)5001
20250425123522234 DLGLOBAL <0004> telnet_interface.c:138 Closing telnet connection r=127.0.0.1:54912<->l=127.0.0.1:4256
20250425123522234 DSIP <0000> sip.c:361 SIP event[nua_r_bye] status(200) phrase(OK) SDP((null)) 0x55aa765fef20
20250425123522234 DSIP <0000> sip.c:419 leg(0x55aa765fef20) got resp to bye
20250425123522234 DAPP <0002> call.c:90 call(5001) released.
TC_mt_success_rel_gsm(5)@57e03c4134ee: Final verdict of PTC: pass
20250425123522237 DMNCC <0001> mncc.c:1092 Failed to read 0/Bad file descriptor. Re-connecting.
SIP_Test-MNCC(3)@57e03c4134ee: Final verdict of PTC: none
SIP_Test_SIP_EMU(4)@57e03c4134ee: Final verdict of PTC: none
MTC@57e03c4134ee: Setting final verdict of the test case.
MTC@57e03c4134ee: Local verdict of MTC: none
MTC@57e03c4134ee: Local verdict of PTC SIP_Test-MNCC(3): none (none -> none)
MTC@57e03c4134ee: Local verdict of PTC SIP_Test_SIP_EMU(4): none (none -> none)
MTC@57e03c4134ee: Local verdict of PTC TC_mt_success_rel_gsm(5): pass (none -> pass)
MTC@57e03c4134ee: Test case TC_mt_success_rel_gsm finished. Verdict: pass
MTC@57e03c4134ee: Starting external command `/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/ttcn3-tcpdump-stop.sh SIP_Tests.TC_mt_success_rel_gsm pass'.
Fri Apr 25 12:35:22 UTC 2025
====== SIP_Tests.TC_mt_success_rel_gsm pass ======

Saving talloc report from 127.0.0.1:4256 to SIP_Tests.TC_mt_success_rel_gsm.talloc
20250425123522292 DLGLOBAL <0004> telnet_interface.c:192 Accept()ed new telnet connection r=127.0.0.1:54914<->l=127.0.0.1:4256
20250425123522292 DLGLOBAL <0004> telnet_interface.c:138 Closing telnet connection r=127.0.0.1:54914<->l=127.0.0.1:4256
Waiting for packet dumper to finish... 0 (prev_count=-1, count=15312)
Waiting for packet dumper to finish... 1 (prev_count=15312, count=21964)
MTC@57e03c4134ee: External command `/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/ttcn3-tcpdump-stop.sh SIP_Tests.TC_mt_success_rel_gsm pass' was executed successfully (exit status: 0).
MTC@57e03c4134ee: Starting external command `/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/ttcn3-tcpdump-start.sh SIP_Tests.TC_mt_success_rel_gsm_ipv6'.
------ SIP_Tests.TC_mt_success_rel_gsm_ipv6 ------
Fri Apr 25 12:35:24 UTC 2025
/usr/bin/dumpcap -q -s 1520 -n -i any -w "/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/logs/testsuite/SIP_Tests.TC_mt_success_rel_gsm_ipv6.pcap" >/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/logs/testsuite/SIP_Tests.TC_mt_success_rel_gsm_ipv6.pcap.stdout 2>/tmp/cmderr &
Waiting for packet dumper to start... 0
MTC@57e03c4134ee: External command `/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/ttcn3-tcpdump-start.sh SIP_Tests.TC_mt_success_rel_gsm_ipv6' was executed successfully (exit status: 0).
MTC@57e03c4134ee: Test case TC_mt_success_rel_gsm_ipv6 started.
MTC@57e03c4134ee: end of f_init_mncc
SIP_Test-MNCC(6)@57e03c4134ee: Warning: Re-starting timer T, which is already active (running or expired).
SIP_Test_SIP_EMU(7)@57e03c4134ee: Warning: The maximum number of open file descriptors (1048576) is greater than FD_SETSIZE (1024). Ensure that Test Ports using Install_Handler do not try to wait for events of file descriptors with values greater than FD_SETSIZE (1024). (Current caller of Install_Handler is "SIP")
MTC@57e03c4134ee: end of f_init_sip
20250425123525319 DLGLOBAL <0004> telnet_interface.c:192 Accept()ed new telnet connection r=127.0.0.1:43938<->l=127.0.0.1:4256
MTC@57e03c4134ee: end of f_init
TC_mt_success_rel_gsm_ipv6(8)@57e03c4134ee: Warning: Test port parameter local_sip_port is not supported on port SIP.
TC_mt_success_rel_gsm_ipv6(8)@57e03c4134ee: Warning: Test port parameter default_local_address is not supported on port SIP.
TC_mt_success_rel_gsm_ipv6(8)@57e03c4134ee: Warning: Test port parameter default_sip_protocol is not supported on port SIP.
TC_mt_success_rel_gsm_ipv6(8)@57e03c4134ee: Warning: Test port parameter default_dest_port is not supported on port SIP.
TC_mt_success_rel_gsm_ipv6(8)@57e03c4134ee: Warning: Test port parameter default_dest_address is not supported on port SIP.
20250425123527237 DMNCC <0001> mncc.c:1031 Reconnected to /tmp/mncc
20250425123527238 DMNCC <0001> mncc.c:1079 rx MNCC MNCC_SOCKET_HELLO
20250425123527238 DMNCC <0001> mncc.c:918 Got hello message version 8
SIP_Test-MNCC(6)@57e03c4134ee: Created MnccExpect[0] for "98766" to be handled at TC_mt_success_rel_gsm_ipv6(8)
SIP_Test_SIP_EMU(7)@57e03c4134ee: Added SIP Call Table entry [0] for "2E2B54FE4593626" at TC_mt_success_rel_gsm_ipv6(8)
20250425123528346 DSIP <0000> sip.c:361 SIP event[nua_i_invite] status(100) phrase(Trying) SDP(v=0
o=Osmocom 0 0 IN IP4 1.1.1.1
s=GSM Call
c=IN IP6 ::1
t=0 0
m=audio 1234 RTP/AVP 0
a=rtpmap:0 GSM/8000
) (nil)
20250425123528346 DSIP <0000> sip.c:436 Processing INVITE Call-ID: 2E2B54FE4593626
20250425123528346 DSIP <0000> sip.c:126 Incoming call(2E2B54FE4593626) handle(0x55aa765ffc40)
20250425123528346 DSIP <0000> sip.c:189 SDP Extracted: IP=(::1) PORT=(1234) PAYLOAD=(0).
20250425123528346 DAPP <0002> call.c:186 call(5002) leg(0x0x55aa76602f30) received new SDP="v=0\r\no=Osmocom 0 0 IN IP4 1.1.1.1\r\ns=GSM Call\r\nc=IN IP6 ::1\r\nt=0 0\r\nm=audio 1234 RTP/AVP 0\r\na=rtpmap:0 GSM/8000\r\n"
20250425123528346 DAPP <0002> call.c:187 call(5002) leg(0x0x55aa76602f30) replaced old SDP=""
20250425123528346 DMNCC <0001> mncc.c:137 tx MNCC MNCC_SETUP_REQ with SDP="v=0\r\no=Osmocom 0 0 IN IP4 1.1.1.1\r\ns=GSM Call\r\nc=IN IP6 ::1\r\nt=0 0\r\nm=audio 1234 RTP/AVP 0\r\na=rtpmap:0 GSM/8000\r\n"
20250425123528347 DSIP <0000> sip.c:361 SIP event[nua_i_state] status(100) phrase(Trying) SDP((null)) 0x55aa76602f30
20250425123528347 DSIP <0000> sip.c:461 Did not handle event[nua_i_state] status(100)
SIP_Test-MNCC(6)@57e03c4134ee: Found MnccExpect[0] for "98766" handled at TC_mt_success_rel_gsm_ipv6(8)
SIP_Test-MNCC(6)@57e03c4134ee: Added conn table entry 0TC_mt_success_rel_gsm_ipv6(8)5002
TC_mt_success_rel_gsm_ipv6(8)@57e03c4134ee: SDP update from "" to "v=0\r\no=Osmocom 0 0 IN IP4 1.1.1.1\r\ns=GSM Call\r\nc=IN IP6 ::1\r\nt=0 0\r\nm=audio 1234 RTP/AVP 0\r\na=rtpmap:0 GSM/8000\r\n"
20250425123528358 DMNCC <0001> mncc.c:1076 rx MNCC MNCC_CALL_CONF_IND with SDP=""
20250425123528358 DAPP <0002> call.c:180 call(5002) leg(0x0x55aa766034a0) no new SDP in ""
20250425123528358 DAPP <0002> call.c:182 call(5002) leg(0x0x55aa766034a0) keep stored SDP=""
20250425123528358 DMNCC <0001> mncc.c:744 leg(5002) confirmed. creating RTP socket.
20250425123528358 DMNCC <0001> mncc.c:68 Starting Timer for MNCC_RTP_CREATE
20250425123528358 DMNCC <0001> mncc.c:165 tx MNCC MNCC_RTP_CREATE with SDP=""
20250425123528359 DMNCC <0001> mncc.c:1076 rx MNCC MNCC_RTP_CREATE with SDP=""
20250425123528359 DAPP <0002> call.c:180 call(5002) leg(0x0x55aa766034a0) no new SDP in ""
20250425123528359 DAPP <0002> call.c:182 call(5002) leg(0x0x55aa766034a0) keep stored SDP=""
20250425123528359 DMNCC <0001> mncc.c:464 RTP continue leg(5002) ip(::2), port(5678) pt(0) ptm(0)
20250425123528359 DMNCC <0001> mncc.c:80 Got response(MNCC_RTP_CREATE), stopping timer on leg(5002)
20250425123528359 DMNCC <0001> mncc.c:1076 rx MNCC MNCC_ALERT_IND with SDP=""
20250425123528359 DAPP <0002> call.c:180 call(5002) leg(0x0x55aa766034a0) no new SDP in ""
20250425123528359 DAPP <0002> call.c:182 call(5002) leg(0x0x55aa766034a0) keep stored SDP=""
20250425123528359 DMNCC <0001> mncc.c:764 leg(5002) is alerting.
20250425123528360 DSIP <0000> sip.c:361 SIP event[nua_i_state] status(180) phrase(Ringing) SDP((null)) 0x55aa76602f30
20250425123528360 DSIP <0000> sip.c:461 Did not handle event[nua_i_state] status(180)
20250425123528365 DMNCC <0001> mncc.c:1076 rx MNCC MNCC_SETUP_CNF with SDP=""
20250425123528365 DAPP <0002> call.c:180 call(5002) leg(0x0x55aa766034a0) no new SDP in ""
20250425123528365 DAPP <0002> call.c:182 call(5002) leg(0x0x55aa766034a0) keep stored SDP=""
20250425123528365 DMNCC <0001> mncc.c:844 leg(5002) setup completed
20250425123528365 DMNCC <0001> mncc.c:212 SEND rtp_connect: IP=(::1) PORT=(1234)
20250425123528365 DMNCC <0001> mncc.c:165 tx MNCC MNCC_RTP_CONNECT with SDP="v=0\r\no=Osmocom 0 0 IN IP4 1.1.1.1\r\ns=GSM Call\r\nc=IN IP6 ::1\r\nt=0 0\r\nm=audio 1234 RTP/AVP 0\r\na=rtpmap:0 GSM/8000\r\n"
20250425123528365 DMNCC <0001> mncc.c:137 tx MNCC MNCC_SETUP_COMPL_REQ with SDP=""
20250425123528365 DAPP <0002> app.c:111 Unknown ptmsg(0). call broken
20250425123528365 DSIP <0000> sip.c:361 SIP event[nua_i_state] status(200) phrase(OK) SDP((null)) 0x55aa76602f30
20250425123528365 DSIP <0000> sip.c:461 Did not handle event[nua_i_state] status(200)
20250425123528371 DSIP <0000> sip.c:361 SIP event[nua_i_ack] status(200) phrase(OK) SDP((null)) 0x55aa76602f30
20250425123528371 DSIP <0000> sip.c:361 SIP event[nua_i_state] status(200) phrase(OK) SDP((null)) 0x55aa76602f30
20250425123528371 DSIP <0000> sip.c:461 Did not handle event[nua_i_state] status(200)
20250425123528371 DSIP <0000> sip.c:361 SIP event[nua_i_active] status(200) phrase(Call active) SDP((null)) 0x55aa76602f30
20250425123528371 DSIP <0000> sip.c:461 Did not handle event[nua_i_active] status(200)
20250425123530370 DMNCC <0001> mncc.c:1076 rx MNCC MNCC_DISC_IND with SDP=""
20250425123530371 DMNCC <0001> mncc.c:634 Rcvd MNCC_DISC_IND, Cause: unknown 0x0
20250425123530371 DMNCC <0001> mncc.c:636 leg(5002) was disconnected. Releasing
20250425123530371 DMNCC <0001> mncc.c:68 Starting Timer for MNCC_REL_CNF
20250425123530371 DMNCC <0001> mncc.c:137 tx MNCC MNCC_REL_REQ with SDP=""
20250425123530371 DSIP <0000> sip.c:503 sip_release_call(): Release with MNCC cause(unknown 0x0)
20250425123530371 DSIP <0000> sip.c:479 cause2status(): Cause(unknown 0x0) not found in map.
20250425123530371 DSIP <0000> sip.c:527 Ending leg(0x55aa76602f30) in connected state.
20250425123530373 DMNCC <0001> mncc.c:1076 rx MNCC MNCC_REL_CNF with SDP=""
20250425123530373 DMNCC <0001> mncc.c:80 Got response(MNCC_REL_CNF), stopping timer on leg(5002)
20250425123530373 DMNCC <0001> mncc.c:684 leg(5002) was cnf released.
SIP_Test-MNCC(6)@57e03c4134ee: Deleted conn table entry 0TC_mt_success_rel_gsm_ipv6(8)5002
TC_mt_success_rel_gsm_ipv6(8)@57e03c4134ee: setverdict(pass): none -> pass
20250425123530373 DLGLOBAL <0004> telnet_interface.c:138 Closing telnet connection r=127.0.0.1:43938<->l=127.0.0.1:4256
20250425123530373 DSIP <0000> sip.c:361 SIP event[nua_r_bye] status(200) phrase(OK) SDP((null)) 0x55aa76602f30
20250425123530373 DSIP <0000> sip.c:419 leg(0x55aa76602f30) got resp to bye
20250425123530373 DAPP <0002> call.c:90 call(5002) released.
20250425123530373 DMNCC <0001> mncc.c:1092 Failed to read 0/Resource temporarily unavailable. Re-connecting.
SIP_Test-MNCC(6)@57e03c4134ee: Final verdict of PTC: none
SIP_Test_SIP_EMU(7)@57e03c4134ee: Final verdict of PTC: none
TC_mt_success_rel_gsm_ipv6(8)@57e03c4134ee: Final verdict of PTC: pass
MTC@57e03c4134ee: Setting final verdict of the test case.
MTC@57e03c4134ee: Local verdict of MTC: none
MTC@57e03c4134ee: Local verdict of PTC SIP_Test-MNCC(6): none (none -> none)
MTC@57e03c4134ee: Local verdict of PTC SIP_Test_SIP_EMU(7): none (none -> none)
MTC@57e03c4134ee: Local verdict of PTC TC_mt_success_rel_gsm_ipv6(8): pass (none -> pass)
MTC@57e03c4134ee: Test case TC_mt_success_rel_gsm_ipv6 finished. Verdict: pass
MTC@57e03c4134ee: Starting external command `/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/ttcn3-tcpdump-stop.sh SIP_Tests.TC_mt_success_rel_gsm_ipv6 pass'.
Fri Apr 25 12:35:30 UTC 2025
====== SIP_Tests.TC_mt_success_rel_gsm_ipv6 pass ======

Saving talloc report from 127.0.0.1:4256 to SIP_Tests.TC_mt_success_rel_gsm_ipv6.talloc
20250425123530398 DLGLOBAL <0004> telnet_interface.c:192 Accept()ed new telnet connection r=127.0.0.1:43948<->l=127.0.0.1:4256
20250425123530398 DLGLOBAL <0004> telnet_interface.c:138 Closing telnet connection r=127.0.0.1:43948<->l=127.0.0.1:4256
Waiting for packet dumper to finish... 0 (prev_count=-1, count=15292)
Waiting for packet dumper to finish... 1 (prev_count=15292, count=21956)
MTC@57e03c4134ee: External command `/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/ttcn3-tcpdump-stop.sh SIP_Tests.TC_mt_success_rel_gsm_ipv6 pass' was executed successfully (exit status: 0).
MTC@57e03c4134ee: Starting external command `/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/ttcn3-tcpdump-start.sh SIP_Tests.TC_mt_success_rel_sip'.
------ SIP_Tests.TC_mt_success_rel_sip ------
Fri Apr 25 12:35:32 UTC 2025
/usr/bin/dumpcap -q -s 1520 -n -i any -w "/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/logs/testsuite/SIP_Tests.TC_mt_success_rel_sip.pcap" >/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/logs/testsuite/SIP_Tests.TC_mt_success_rel_sip.pcap.stdout 2>/tmp/cmderr &
Waiting for packet dumper to start... 0
MTC@57e03c4134ee: External command `/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/ttcn3-tcpdump-start.sh SIP_Tests.TC_mt_success_rel_sip' was executed successfully (exit status: 0).
MTC@57e03c4134ee: Test case TC_mt_success_rel_sip started.
MTC@57e03c4134ee: end of f_init_mncc
SIP_Test-MNCC(9)@57e03c4134ee: Warning: Re-starting timer T, which is already active (running or expired).
SIP_Test_SIP_EMU(10)@57e03c4134ee: Warning: The maximum number of open file descriptors (1048576) is greater than FD_SETSIZE (1024). Ensure that Test Ports using Install_Handler do not try to wait for events of file descriptors with values greater than FD_SETSIZE (1024). (Current caller of Install_Handler is "SIP")
20250425123533499 DLGLOBAL <0004> telnet_interface.c:192 Accept()ed new telnet connection r=127.0.0.1:43962<->l=127.0.0.1:4256
MTC@57e03c4134ee: end of f_init_sip
MTC@57e03c4134ee: end of f_init
TC_mt_success_rel_sip(11)@57e03c4134ee: Warning: Test port parameter local_sip_port is not supported on port SIP.
TC_mt_success_rel_sip(11)@57e03c4134ee: Warning: Test port parameter default_local_address is not supported on port SIP.
TC_mt_success_rel_sip(11)@57e03c4134ee: Warning: Test port parameter default_sip_protocol is not supported on port SIP.
TC_mt_success_rel_sip(11)@57e03c4134ee: Warning: Test port parameter default_dest_port is not supported on port SIP.
TC_mt_success_rel_sip(11)@57e03c4134ee: Warning: Test port parameter default_dest_address is not supported on port SIP.
20250425123535373 DMNCC <0001> mncc.c:1031 Reconnected to /tmp/mncc
20250425123535374 DMNCC <0001> mncc.c:1079 rx MNCC MNCC_SOCKET_HELLO
20250425123535374 DMNCC <0001> mncc.c:918 Got hello message version 8
SIP_Test-MNCC(9)@57e03c4134ee: Created MnccExpect[0] for "98766" to be handled at TC_mt_success_rel_sip(11)
SIP_Test_SIP_EMU(10)@57e03c4134ee: Added SIP Call Table entry [0] for "98F5EDD2F0D0FCC" at TC_mt_success_rel_sip(11)
20250425123536525 DSIP <0000> sip.c:361 SIP event[nua_i_invite] status(100) phrase(Trying) SDP(v=0
o=Osmocom 0 0 IN IP4 1.1.1.1
s=GSM Call
c=IN IP4 1.2.3.4
t=0 0
m=audio 1234 RTP/AVP 0
a=rtpmap:0 GSM/8000
) (nil)
20250425123536525 DSIP <0000> sip.c:436 Processing INVITE Call-ID: 98F5EDD2F0D0FCC
20250425123536525 DSIP <0000> sip.c:126 Incoming call(98F5EDD2F0D0FCC) handle(0x55aa765fddf0)
20250425123536525 DSIP <0000> sip.c:189 SDP Extracted: IP=(1.2.3.4) PORT=(1234) PAYLOAD=(0).
20250425123536525 DAPP <0002> call.c:186 call(5003) leg(0x0x55aa76604650) received new SDP="v=0\r\no=Osmocom 0 0 IN IP4 1.1.1.1\r\ns=GSM Call\r\nc=IN IP4 1.2.3.4\r\nt=0 0\r\nm=audio 1234 RTP/AVP 0\r\na=rtpmap:0 GSM/8000\r\n"
20250425123536525 DAPP <0002> call.c:187 call(5003) leg(0x0x55aa76604650) replaced old SDP=""
20250425123536525 DMNCC <0001> mncc.c:137 tx MNCC MNCC_SETUP_REQ with SDP="v=0\r\no=Osmocom 0 0 IN IP4 1.1.1.1\r\ns=GSM Call\r\nc=IN IP4 1.2.3.4\r\nt=0 0\r\nm=audio 1234 RTP/AVP 0\r\na=rtpmap:0 GSM/8000\r\n"
20250425123536525 DSIP <0000> sip.c:361 SIP event[nua_i_state] status(100) phrase(Trying) SDP((null)) 0x55aa76604650
20250425123536525 DSIP <0000> sip.c:461 Did not handle event[nua_i_state] status(100)
SIP_Test-MNCC(9)@57e03c4134ee: Found MnccExpect[0] for "98766" handled at TC_mt_success_rel_sip(11)
SIP_Test-MNCC(9)@57e03c4134ee: Added conn table entry 0TC_mt_success_rel_sip(11)5003
TC_mt_success_rel_sip(11)@57e03c4134ee: SDP update from "" to "v=0\r\no=Osmocom 0 0 IN IP4 1.1.1.1\r\ns=GSM Call\r\nc=IN IP4 1.2.3.4\r\nt=0 0\r\nm=audio 1234 RTP/AVP 0\r\na=rtpmap:0 GSM/8000\r\n"
20250425123536532 DMNCC <0001> mncc.c:1076 rx MNCC MNCC_CALL_CONF_IND with SDP=""
20250425123536533 DAPP <0002> call.c:180 call(5003) leg(0x0x55aa76604bc0) no new SDP in ""
20250425123536533 DAPP <0002> call.c:182 call(5003) leg(0x0x55aa76604bc0) keep stored SDP=""
20250425123536533 DMNCC <0001> mncc.c:744 leg(5003) confirmed. creating RTP socket.
20250425123536533 DMNCC <0001> mncc.c:68 Starting Timer for MNCC_RTP_CREATE
20250425123536533 DMNCC <0001> mncc.c:165 tx MNCC MNCC_RTP_CREATE with SDP=""
20250425123536534 DMNCC <0001> mncc.c:1076 rx MNCC MNCC_RTP_CREATE with SDP=""
20250425123536534 DAPP <0002> call.c:180 call(5003) leg(0x0x55aa76604bc0) no new SDP in ""
20250425123536534 DAPP <0002> call.c:182 call(5003) leg(0x0x55aa76604bc0) keep stored SDP=""
20250425123536534 DMNCC <0001> mncc.c:464 RTP continue leg(5003) ip(5.6.7.8), port(5678) pt(0) ptm(0)
20250425123536534 DMNCC <0001> mncc.c:80 Got response(MNCC_RTP_CREATE), stopping timer on leg(5003)
20250425123536534 DMNCC <0001> mncc.c:1076 rx MNCC MNCC_ALERT_IND with SDP=""
20250425123536534 DAPP <0002> call.c:180 call(5003) leg(0x0x55aa76604bc0) no new SDP in ""
20250425123536534 DAPP <0002> call.c:182 call(5003) leg(0x0x55aa76604bc0) keep stored SDP=""
20250425123536534 DMNCC <0001> mncc.c:764 leg(5003) is alerting.
20250425123536535 DSIP <0000> sip.c:361 SIP event[nua_i_state] status(180) phrase(Ringing) SDP((null)) 0x55aa76604650
20250425123536535 DSIP <0000> sip.c:461 Did not handle event[nua_i_state] status(180)
20250425123536539 DMNCC <0001> mncc.c:1076 rx MNCC MNCC_SETUP_CNF with SDP=""
20250425123536539 DAPP <0002> call.c:180 call(5003) leg(0x0x55aa76604bc0) no new SDP in ""
20250425123536539 DAPP <0002> call.c:182 call(5003) leg(0x0x55aa76604bc0) keep stored SDP=""
20250425123536539 DMNCC <0001> mncc.c:844 leg(5003) setup completed
20250425123536539 DMNCC <0001> mncc.c:212 SEND rtp_connect: IP=(1.2.3.4) PORT=(1234)
20250425123536539 DMNCC <0001> mncc.c:165 tx MNCC MNCC_RTP_CONNECT with SDP="v=0\r\no=Osmocom 0 0 IN IP4 1.1.1.1\r\ns=GSM Call\r\nc=IN IP4 1.2.3.4\r\nt=0 0\r\nm=audio 1234 RTP/AVP 0\r\na=rtpmap:0 GSM/8000\r\n"
20250425123536539 DMNCC <0001> mncc.c:137 tx MNCC MNCC_SETUP_COMPL_REQ with SDP=""
20250425123536539 DAPP <0002> app.c:111 Unknown ptmsg(0). call broken
20250425123536539 DSIP <0000> sip.c:361 SIP event[nua_i_state] status(200) phrase(OK) SDP((null)) 0x55aa76604650
20250425123536539 DSIP <0000> sip.c:461 Did not handle event[nua_i_state] status(200)
20250425123536544 DSIP <0000> sip.c:361 SIP event[nua_i_ack] status(200) phrase(OK) SDP((null)) 0x55aa76604650
20250425123536544 DSIP <0000> sip.c:361 SIP event[nua_i_state] status(200) phrase(OK) SDP((null)) 0x55aa76604650
20250425123536544 DSIP <0000> sip.c:461 Did not handle event[nua_i_state] status(200)
20250425123536544 DSIP <0000> sip.c:361 SIP event[nua_i_active] status(200) phrase(Call active) SDP((null)) 0x55aa76604650
20250425123536544 DSIP <0000> sip.c:461 Did not handle event[nua_i_active] status(200)
20250425123538546 DSIP <0000> sip.c:361 SIP event[nua_i_bye] status(200) phrase(Session Terminated) SDP((null)) 0x55aa76604650
20250425123538546 DSIP <0000> sip.c:428 leg(0x55aa76604650) got bye, releasing.
20250425123538546 DMNCC <0001> mncc.c:332 Releasing call in non-initial leg(5003) cause(unknown 0x0)
20250425123538546 DMNCC <0001> mncc.c:68 Starting Timer for MNCC_REL_IND
20250425123538546 DMNCC <0001> mncc.c:137 tx MNCC MNCC_DISC_REQ with SDP=""
20250425123538547 DMNCC <0001> mncc.c:1076 rx MNCC MNCC_REL_IND with SDP=""
20250425123538547 DMNCC <0001> mncc.c:658 Rcvd MNCC_REL_IND, Cause: unknown 0x0
20250425123538547 DMNCC <0001> mncc.c:80 Got response(MNCC_REL_IND), stopping timer on leg(5003)
20250425123538547 DMNCC <0001> mncc.c:670 leg(5003) was released.
20250425123538547 DAPP <0002> call.c:90 call(5003) released.
SIP_Test-MNCC(9)@57e03c4134ee: Deleted conn table entry 0TC_mt_success_rel_sip(11)5003
TC_mt_success_rel_sip(11)@57e03c4134ee: setverdict(pass): none -> pass
20250425123538547 DLGLOBAL <0004> telnet_interface.c:138 Closing telnet connection r=127.0.0.1:43962<->l=127.0.0.1:4256
TC_mt_success_rel_sip(11)@57e03c4134ee: Final verdict of PTC: pass
20250425123538547 DMNCC <0001> mncc.c:1092 Failed to read 0/Bad file descriptor. Re-connecting.
SIP_Test-MNCC(9)@57e03c4134ee: Final verdict of PTC: none
SIP_Test_SIP_EMU(10)@57e03c4134ee: Final verdict of PTC: none
MTC@57e03c4134ee: Setting final verdict of the test case.
MTC@57e03c4134ee: Local verdict of MTC: none
MTC@57e03c4134ee: Local verdict of PTC SIP_Test-MNCC(9): none (none -> none)
MTC@57e03c4134ee: Local verdict of PTC SIP_Test_SIP_EMU(10): none (none -> none)
MTC@57e03c4134ee: Local verdict of PTC TC_mt_success_rel_sip(11): pass (none -> pass)
MTC@57e03c4134ee: Test case TC_mt_success_rel_sip finished. Verdict: pass
MTC@57e03c4134ee: Starting external command `/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/ttcn3-tcpdump-stop.sh SIP_Tests.TC_mt_success_rel_sip pass'.
Fri Apr 25 12:35:38 UTC 2025
====== SIP_Tests.TC_mt_success_rel_sip pass ======

Saving talloc report from 127.0.0.1:4256 to SIP_Tests.TC_mt_success_rel_sip.talloc
20250425123538568 DLGLOBAL <0004> telnet_interface.c:192 Accept()ed new telnet connection r=127.0.0.1:38892<->l=127.0.0.1:4256
20250425123538568 DLGLOBAL <0004> telnet_interface.c:138 Closing telnet connection r=127.0.0.1:38892<->l=127.0.0.1:4256
Waiting for packet dumper to finish... 0 (prev_count=-1, count=15312)
Waiting for packet dumper to finish... 1 (prev_count=15312, count=21120)
MTC@57e03c4134ee: External command `/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/ttcn3-tcpdump-stop.sh SIP_Tests.TC_mt_success_rel_sip pass' was executed successfully (exit status: 0).
MTC@57e03c4134ee: Starting external command `/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/ttcn3-tcpdump-start.sh SIP_Tests.TC_mo_success_rel_gsm'.
------ SIP_Tests.TC_mo_success_rel_gsm ------
Fri Apr 25 12:35:40 UTC 2025
/usr/bin/dumpcap -q -s 1520 -n -i any -w "/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/logs/testsuite/SIP_Tests.TC_mo_success_rel_gsm.pcap" >/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/logs/testsuite/SIP_Tests.TC_mo_success_rel_gsm.pcap.stdout 2>/tmp/cmderr &
Waiting for packet dumper to start... 0
MTC@57e03c4134ee: External command `/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/ttcn3-tcpdump-start.sh SIP_Tests.TC_mo_success_rel_gsm' was executed successfully (exit status: 0).
MTC@57e03c4134ee: Test case TC_mo_success_rel_gsm started.
MTC@57e03c4134ee: end of f_init_mncc
SIP_Test-MNCC(12)@57e03c4134ee: Warning: Re-starting timer T, which is already active (running or expired).
SIP_Test_SIP_EMU(13)@57e03c4134ee: Warning: The maximum number of open file descriptors (1048576) is greater than FD_SETSIZE (1024). Ensure that Test Ports using Install_Handler do not try to wait for events of file descriptors with values greater than FD_SETSIZE (1024). (Current caller of Install_Handler is "SIP")
MTC@57e03c4134ee: end of f_init_sip
20250425123541593 DLGLOBAL <0004> telnet_interface.c:192 Accept()ed new telnet connection r=127.0.0.1:38900<->l=127.0.0.1:4256
MTC@57e03c4134ee: end of f_init
TC_mo_success_rel_gsm(14)@57e03c4134ee: Warning: Test port parameter local_sip_port is not supported on port SIP.
TC_mo_success_rel_gsm(14)@57e03c4134ee: Warning: Test port parameter default_local_address is not supported on port SIP.
TC_mo_success_rel_gsm(14)@57e03c4134ee: Warning: Test port parameter default_sip_protocol is not supported on port SIP.
TC_mo_success_rel_gsm(14)@57e03c4134ee: Warning: Test port parameter default_dest_port is not supported on port SIP.
TC_mo_success_rel_gsm(14)@57e03c4134ee: Warning: Test port parameter default_dest_address is not supported on port SIP.
20250425123543548 DMNCC <0001> mncc.c:1031 Reconnected to /tmp/mncc
20250425123543548 DMNCC <0001> mncc.c:1079 rx MNCC MNCC_SOCKET_HELLO
20250425123543548 DMNCC <0001> mncc.c:918 Got hello message version 8
SIP_Test_SIP_EMU(13)@57e03c4134ee: Created SipExpect[0] for { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "98766", password := omit }, hostPort := { host := "127.0.0.2", portField := 5060 }, urlParameters := omit, headers := omit } to be handled at TC_mo_success_rel_gsm(14)
SIP_Test-MNCC(12)@57e03c4134ee: Added conn table entry 0TC_mo_success_rel_gsm(14)1937672533
20250425123544598 DMNCC <0001> mncc.c:1076 rx MNCC MNCC_SETUP_IND with SDP=""
20250425123544598 DAPP <0002> call.c:180 call(5004) leg(0x0x55aa765fab90) no new SDP in ""
20250425123544598 DAPP <0002> call.c:182 call(5004) leg(0x0x55aa765fab90) keep stored SDP=""
20250425123544598 DMNCC <0001> mncc.c:582 Created call(5004) with MNCC leg(1937672533) IMSI(262420123456789)
20250425123544598 DMNCC <0001> mncc.c:68 Starting Timer for MNCC_RTP_CREATE
20250425123544598 DMNCC <0001> mncc.c:165 tx MNCC MNCC_RTP_CREATE with SDP=""
20250425123544599 DMNCC <0001> mncc.c:1076 rx MNCC MNCC_RTP_CREATE with SDP=""
20250425123544599 DAPP <0002> call.c:180 call(5004) leg(0x0x55aa765fab90) no new SDP in ""
20250425123544599 DAPP <0002> call.c:182 call(5004) leg(0x0x55aa765fab90) keep stored SDP=""
20250425123544599 DMNCC <0001> mncc.c:464 RTP continue leg(1937672533) ip(5.6.7.8), port(5678) pt(0) ptm(768)
20250425123544599 DMNCC <0001> mncc.c:80 Got response(MNCC_RTP_CREATE), stopping timer on leg(1937672533)
20250425123544599 DMNCC <0001> mncc.c:137 tx MNCC MNCC_CALL_PROC_REQ with SDP=""
20250425123544599 DSIP <0000> sip.c:361 SIP event[nua_i_state] status(0) phrase(INVITE sent) SDP((null)) 0x55aa766045a0
20250425123544599 DSIP <0000> sip.c:461 Did not handle event[nua_i_state] status(0)
SIP_Test_SIP_EMU(13)@57e03c4134ee: Found SipExpect[0] for { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "98766", password := omit }, hostPort := { host := "127.0.0.2", portField := 5060 }, urlParameters := omit, headers := omit } handled at TC_mo_success_rel_gsm(14)
SIP_Test_SIP_EMU(13)@57e03c4134ee: Added SIP Call Table entry [0] for "a5ef88ef-9c74-123e-29b0-ea9ab35fbf54" at TC_mo_success_rel_gsm(14)
20250425123544604 DSIP <0000> sip.c:361 SIP event[nua_r_invite] status(180) phrase(Ringing) SDP((null)) 0x55aa766045a0
20250425123544604 DAPP <0002> call.c:180 call(5004) leg(0x0x55aa766045a0) no new SDP in NULL
20250425123544604 DAPP <0002> call.c:182 call(5004) leg(0x0x55aa766045a0) keep stored SDP=""
20250425123544604 DSIP <0000> sip.c:88 leg(0x55aa766045a0) is now progressing.
20250425123544604 DMNCC <0001> mncc.c:137 tx MNCC MNCC_ALERT_REQ with SDP=""
20250425123544604 DSIP <0000> sip.c:361 SIP event[nua_i_state] status(180) phrase(Ringing) SDP((null)) 0x55aa766045a0
20250425123544604 DSIP <0000> sip.c:461 Did not handle event[nua_i_state] status(180)
20250425123544604 DSIP <0000> sip.c:361 SIP event[nua_r_invite] status(200) phrase(OK) SDP(v=0
o=Osmocom 0 0 IN IP4 1.1.1.1
s=GSM Call
c=IN IP4 1.2.3.4
t=0 0
m=audio 1234 RTP/AVP 0
a=rtpmap:0 GSM/8000
) 0x55aa766045a0
20250425123544604 DAPP <0002> call.c:186 call(5004) leg(0x0x55aa766045a0) received new SDP="v=0\r\no=Osmocom 0 0 IN IP4 1.1.1.1\r\ns=GSM Call\r\nc=IN IP4 1.2.3.4\r\nt=0 0\r\nm=audio 1234 RTP/AVP 0\r\na=rtpmap:0 GSM/8000\r\n"
20250425123544604 DAPP <0002> call.c:187 call(5004) leg(0x0x55aa766045a0) replaced old SDP=""
20250425123544604 DSIP <0000> sip.c:110 leg(0x55aa766045a0) is now connected(a5ef88ef-9c74-123e-29b0-ea9ab35fbf54).
20250425123544604 DMNCC <0001> mncc.c:212 SEND rtp_connect: IP=(1.2.3.4) PORT=(1234)
20250425123544604 DMNCC <0001> mncc.c:165 tx MNCC MNCC_RTP_CONNECT with SDP="v=0\r\no=Osmocom 0 0 IN IP4 1.1.1.1\r\ns=GSM Call\r\nc=IN IP4 1.2.3.4\r\nt=0 0\r\nm=audio 1234 RTP/AVP 0\r\na=rtpmap:0 GSM/8000\r\n"
20250425123544604 DMNCC <0001> mncc.c:68 Starting Timer for MNCC_SETUP_COMPL_IND
20250425123544604 DMNCC <0001> mncc.c:137 tx MNCC MNCC_SETUP_RSP with SDP=""
20250425123544604 DSIP <0000> sip.c:361 SIP event[nua_i_state] status(200) phrase(OK) SDP((null)) 0x55aa766045a0
20250425123544604 DSIP <0000> sip.c:461 Did not handle event[nua_i_state] status(200)
20250425123544604 DSIP <0000> sip.c:361 SIP event[nua_i_state] status(200) phrase(ACK sent) SDP((null)) 0x55aa766045a0
20250425123544604 DSIP <0000> sip.c:461 Did not handle event[nua_i_state] status(200)
20250425123544604 DSIP <0000> sip.c:361 SIP event[nua_i_active] status(200) phrase(Call active) SDP((null)) 0x55aa766045a0
20250425123544604 DSIP <0000> sip.c:461 Did not handle event[nua_i_active] status(200)
TC_mo_success_rel_gsm(14)@57e03c4134ee: SDP update from "" to "v=0\r\no=Osmocom 0 0 IN IP4 1.1.1.1\r\ns=GSM Call\r\nc=IN IP4 1.2.3.4\r\nt=0 0\r\nm=audio 1234 RTP/AVP 0\r\na=rtpmap:0 GSM/8000\r\n"
20250425123544605 DMNCC <0001> mncc.c:1076 rx MNCC MNCC_SETUP_COMPL_IND with SDP=""
20250425123544605 DAPP <0002> call.c:180 call(5004) leg(0x0x55aa765fab90) no new SDP in ""
20250425123544605 DAPP <0002> call.c:182 call(5004) leg(0x0x55aa765fab90) keep stored SDP=""
20250425123544605 DMNCC <0001> mncc.c:699 leg(1937672533) is now connected.
20250425123544605 DMNCC <0001> mncc.c:80 Got response(MNCC_SETUP_COMPL_IND), stopping timer on leg(1937672533)
20250425123546607 DMNCC <0001> mncc.c:1076 rx MNCC MNCC_DISC_IND with SDP=""
20250425123546607 DMNCC <0001> mncc.c:634 Rcvd MNCC_DISC_IND, Cause: unknown 0x0
20250425123546607 DMNCC <0001> mncc.c:636 leg(1937672533) was disconnected. Releasing
20250425123546607 DMNCC <0001> mncc.c:68 Starting Timer for MNCC_REL_CNF
20250425123546607 DMNCC <0001> mncc.c:137 tx MNCC MNCC_REL_REQ with SDP=""
20250425123546607 DSIP <0000> sip.c:503 sip_release_call(): Release with MNCC cause(unknown 0x0)
20250425123546607 DSIP <0000> sip.c:479 cause2status(): Cause(unknown 0x0) not found in map.
20250425123546607 DSIP <0000> sip.c:527 Ending leg(0x55aa766045a0) in connected state.
SIP_Test-MNCC(12)@57e03c4134ee: Deleted conn table entry 0TC_mo_success_rel_gsm(14)1937672533
20250425123546612 DMNCC <0001> mncc.c:1076 rx MNCC MNCC_REL_CNF with SDP=""
20250425123546612 DMNCC <0001> mncc.c:80 Got response(MNCC_REL_CNF), stopping timer on leg(1937672533)
20250425123546612 DMNCC <0001> mncc.c:684 leg(1937672533) was cnf released.
20250425123546612 DSIP <0000> sip.c:361 SIP event[nua_r_bye] status(200) phrase(OK) SDP((null)) 0x55aa766045a0
20250425123546612 DSIP <0000> sip.c:419 leg(0x55aa766045a0) got resp to bye
20250425123546612 DAPP <0002> call.c:90 call(5004) released.
TC_mo_success_rel_gsm(14)@57e03c4134ee: setverdict(pass): none -> pass
20250425123546615 DLGLOBAL <0004> telnet_interface.c:138 Closing telnet connection r=127.0.0.1:38900<->l=127.0.0.1:4256
20250425123546615 DMNCC <0001> mncc.c:1092 Failed to read 0/Bad file descriptor. Re-connecting.
SIP_Test-MNCC(12)@57e03c4134ee: Final verdict of PTC: none
SIP_Test_SIP_EMU(13)@57e03c4134ee: Final verdict of PTC: none
TC_mo_success_rel_gsm(14)@57e03c4134ee: Final verdict of PTC: pass
MTC@57e03c4134ee: Setting final verdict of the test case.
MTC@57e03c4134ee: Local verdict of MTC: none
MTC@57e03c4134ee: Local verdict of PTC SIP_Test-MNCC(12): none (none -> none)
MTC@57e03c4134ee: Local verdict of PTC SIP_Test_SIP_EMU(13): none (none -> none)
MTC@57e03c4134ee: Local verdict of PTC TC_mo_success_rel_gsm(14): pass (none -> pass)
MTC@57e03c4134ee: Test case TC_mo_success_rel_gsm finished. Verdict: pass
MTC@57e03c4134ee: Starting external command `/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/ttcn3-tcpdump-stop.sh SIP_Tests.TC_mo_success_rel_gsm pass'.
Fri Apr 25 12:35:46 UTC 2025
====== SIP_Tests.TC_mo_success_rel_gsm pass ======

Saving talloc report from 127.0.0.1:4256 to SIP_Tests.TC_mo_success_rel_gsm.talloc
20250425123546662 DLGLOBAL <0004> telnet_interface.c:192 Accept()ed new telnet connection r=127.0.0.1:55776<->l=127.0.0.1:4256
20250425123546663 DLGLOBAL <0004> telnet_interface.c:138 Closing telnet connection r=127.0.0.1:55776<->l=127.0.0.1:4256
Waiting for packet dumper to finish... 0 (prev_count=-1, count=14868)
Waiting for packet dumper to finish... 1 (prev_count=14868, count=21588)
MTC@57e03c4134ee: External command `/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/ttcn3-tcpdump-stop.sh SIP_Tests.TC_mo_success_rel_gsm pass' was executed successfully (exit status: 0).
MTC@57e03c4134ee: Starting external command `/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/ttcn3-tcpdump-start.sh SIP_Tests.TC_mo_success_rel_gsm_ipv6'.
------ SIP_Tests.TC_mo_success_rel_gsm_ipv6 ------
Fri Apr 25 12:35:48 UTC 2025
/usr/bin/dumpcap -q -s 1520 -n -i any -w "/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/logs/testsuite/SIP_Tests.TC_mo_success_rel_gsm_ipv6.pcap" >/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/logs/testsuite/SIP_Tests.TC_mo_success_rel_gsm_ipv6.pcap.stdout 2>/tmp/cmderr &
Waiting for packet dumper to start... 0
MTC@57e03c4134ee: External command `/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/ttcn3-tcpdump-start.sh SIP_Tests.TC_mo_success_rel_gsm_ipv6' was executed successfully (exit status: 0).
MTC@57e03c4134ee: Test case TC_mo_success_rel_gsm_ipv6 started.
MTC@57e03c4134ee: end of f_init_mncc
SIP_Test-MNCC(15)@57e03c4134ee: Warning: Re-starting timer T, which is already active (running or expired).
SIP_Test_SIP_EMU(16)@57e03c4134ee: Warning: The maximum number of open file descriptors (1048576) is greater than FD_SETSIZE (1024). Ensure that Test Ports using Install_Handler do not try to wait for events of file descriptors with values greater than FD_SETSIZE (1024). (Current caller of Install_Handler is "SIP")
MTC@57e03c4134ee: end of f_init_sip
20250425123549687 DLGLOBAL <0004> telnet_interface.c:192 Accept()ed new telnet connection r=127.0.0.1:55786<->l=127.0.0.1:4256
MTC@57e03c4134ee: end of f_init
TC_mo_success_rel_gsm_ipv6(17)@57e03c4134ee: Warning: Test port parameter local_sip_port is not supported on port SIP.
TC_mo_success_rel_gsm_ipv6(17)@57e03c4134ee: Warning: Test port parameter default_local_address is not supported on port SIP.
TC_mo_success_rel_gsm_ipv6(17)@57e03c4134ee: Warning: Test port parameter default_sip_protocol is not supported on port SIP.
TC_mo_success_rel_gsm_ipv6(17)@57e03c4134ee: Warning: Test port parameter default_dest_port is not supported on port SIP.
TC_mo_success_rel_gsm_ipv6(17)@57e03c4134ee: Warning: Test port parameter default_dest_address is not supported on port SIP.
20250425123551616 DMNCC <0001> mncc.c:1031 Reconnected to /tmp/mncc
20250425123551616 DMNCC <0001> mncc.c:1079 rx MNCC MNCC_SOCKET_HELLO
20250425123551616 DMNCC <0001> mncc.c:918 Got hello message version 8
SIP_Test_SIP_EMU(16)@57e03c4134ee: Created SipExpect[0] for { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "98766", password := omit }, hostPort := { host := "127.0.0.2", portField := 5060 }, urlParameters := omit, headers := omit } to be handled at TC_mo_success_rel_gsm_ipv6(17)
SIP_Test-MNCC(15)@57e03c4134ee: Added conn table entry 0TC_mo_success_rel_gsm_ipv6(17)1872198934
20250425123552694 DMNCC <0001> mncc.c:1076 rx MNCC MNCC_SETUP_IND with SDP=""
20250425123552694 DAPP <0002> call.c:180 call(5005) leg(0x0x55aa766045a0) no new SDP in ""
20250425123552694 DAPP <0002> call.c:182 call(5005) leg(0x0x55aa766045a0) keep stored SDP=""
20250425123552694 DMNCC <0001> mncc.c:582 Created call(5005) with MNCC leg(1872198934) IMSI(262420123456789)
20250425123552694 DMNCC <0001> mncc.c:68 Starting Timer for MNCC_RTP_CREATE
20250425123552694 DMNCC <0001> mncc.c:165 tx MNCC MNCC_RTP_CREATE with SDP=""
20250425123552695 DMNCC <0001> mncc.c:1076 rx MNCC MNCC_RTP_CREATE with SDP=""
20250425123552695 DAPP <0002> call.c:180 call(5005) leg(0x0x55aa766045a0) no new SDP in ""
20250425123552695 DAPP <0002> call.c:182 call(5005) leg(0x0x55aa766045a0) keep stored SDP=""
20250425123552695 DMNCC <0001> mncc.c:464 RTP continue leg(1872198934) ip(::2), port(5678) pt(0) ptm(768)
20250425123552695 DMNCC <0001> mncc.c:80 Got response(MNCC_RTP_CREATE), stopping timer on leg(1872198934)
20250425123552695 DMNCC <0001> mncc.c:137 tx MNCC MNCC_CALL_PROC_REQ with SDP=""
20250425123552695 DSIP <0000> sip.c:361 SIP event[nua_i_state] status(0) phrase(INVITE sent) SDP((null)) 0x55aa765fab90
20250425123552695 DSIP <0000> sip.c:461 Did not handle event[nua_i_state] status(0)
SIP_Test_SIP_EMU(16)@57e03c4134ee: Found SipExpect[0] for { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "98766", password := omit }, hostPort := { host := "127.0.0.2", portField := 5060 }, urlParameters := omit, headers := omit } handled at TC_mo_success_rel_gsm_ipv6(17)
SIP_Test_SIP_EMU(16)@57e03c4134ee: Added SIP Call Table entry [0] for "aac2dfac-9c74-123e-29b0-ea9ab35fbf54" at TC_mo_success_rel_gsm_ipv6(17)
20250425123552700 DSIP <0000> sip.c:361 SIP event[nua_r_invite] status(180) phrase(Ringing) SDP((null)) 0x55aa765fab90
20250425123552700 DAPP <0002> call.c:180 call(5005) leg(0x0x55aa765fab90) no new SDP in NULL
20250425123552700 DAPP <0002> call.c:182 call(5005) leg(0x0x55aa765fab90) keep stored SDP=""
20250425123552700 DSIP <0000> sip.c:88 leg(0x55aa765fab90) is now progressing.
20250425123552700 DMNCC <0001> mncc.c:137 tx MNCC MNCC_ALERT_REQ with SDP=""
20250425123552700 DSIP <0000> sip.c:361 SIP event[nua_i_state] status(180) phrase(Ringing) SDP((null)) 0x55aa765fab90
20250425123552700 DSIP <0000> sip.c:461 Did not handle event[nua_i_state] status(180)
20250425123552700 DSIP <0000> sip.c:361 SIP event[nua_r_invite] status(200) phrase(OK) SDP(v=0
o=Osmocom 0 0 IN IP4 1.1.1.1
s=GSM Call
c=IN IP6 ::1
t=0 0
m=audio 1234 RTP/AVP 0
a=rtpmap:0 GSM/8000
) 0x55aa765fab90
20250425123552700 DAPP <0002> call.c:186 call(5005) leg(0x0x55aa765fab90) received new SDP="v=0\r\no=Osmocom 0 0 IN IP4 1.1.1.1\r\ns=GSM Call\r\nc=IN IP6 ::1\r\nt=0 0\r\nm=audio 1234 RTP/AVP 0\r\na=rtpmap:0 GSM/8000\r\n"
20250425123552700 DAPP <0002> call.c:187 call(5005) leg(0x0x55aa765fab90) replaced old SDP=""
20250425123552700 DSIP <0000> sip.c:110 leg(0x55aa765fab90) is now connected(aac2dfac-9c74-123e-29b0-ea9ab35fbf54).
20250425123552700 DMNCC <0001> mncc.c:212 SEND rtp_connect: IP=(::1) PORT=(1234)
20250425123552700 DMNCC <0001> mncc.c:165 tx MNCC MNCC_RTP_CONNECT with SDP="v=0\r\no=Osmocom 0 0 IN IP4 1.1.1.1\r\ns=GSM Call\r\nc=IN IP6 ::1\r\nt=0 0\r\nm=audio 1234 RTP/AVP 0\r\na=rtpmap:0 GSM/8000\r\n"
20250425123552700 DMNCC <0001> mncc.c:68 Starting Timer for MNCC_SETUP_COMPL_IND
20250425123552700 DMNCC <0001> mncc.c:137 tx MNCC MNCC_SETUP_RSP with SDP=""
20250425123552700 DSIP <0000> sip.c:361 SIP event[nua_i_state] status(200) phrase(OK) SDP((null)) 0x55aa765fab90
20250425123552700 DSIP <0000> sip.c:461 Did not handle event[nua_i_state] status(200)
20250425123552700 DSIP <0000> sip.c:361 SIP event[nua_i_state] status(200) phrase(ACK sent) SDP((null)) 0x55aa765fab90
20250425123552700 DSIP <0000> sip.c:461 Did not handle event[nua_i_state] status(200)
20250425123552700 DSIP <0000> sip.c:361 SIP event[nua_i_active] status(200) phrase(Call active) SDP((null)) 0x55aa765fab90
20250425123552700 DSIP <0000> sip.c:461 Did not handle event[nua_i_active] status(200)
TC_mo_success_rel_gsm_ipv6(17)@57e03c4134ee: SDP update from "" to "v=0\r\no=Osmocom 0 0 IN IP4 1.1.1.1\r\ns=GSM Call\r\nc=IN IP6 ::1\r\nt=0 0\r\nm=audio 1234 RTP/AVP 0\r\na=rtpmap:0 GSM/8000\r\n"
20250425123552701 DMNCC <0001> mncc.c:1076 rx MNCC MNCC_SETUP_COMPL_IND with SDP=""
20250425123552701 DAPP <0002> call.c:180 call(5005) leg(0x0x55aa766045a0) no new SDP in ""
20250425123552701 DAPP <0002> call.c:182 call(5005) leg(0x0x55aa766045a0) keep stored SDP=""
20250425123552701 DMNCC <0001> mncc.c:699 leg(1872198934) is now connected.
20250425123552701 DMNCC <0001> mncc.c:80 Got response(MNCC_SETUP_COMPL_IND), stopping timer on leg(1872198934)
20250425123554703 DMNCC <0001> mncc.c:1076 rx MNCC MNCC_DISC_IND with SDP=""
20250425123554703 DMNCC <0001> mncc.c:634 Rcvd MNCC_DISC_IND, Cause: unknown 0x0
20250425123554703 DMNCC <0001> mncc.c:636 leg(1872198934) was disconnected. Releasing
20250425123554703 DMNCC <0001> mncc.c:68 Starting Timer for MNCC_REL_CNF
20250425123554703 DMNCC <0001> mncc.c:137 tx MNCC MNCC_REL_REQ with SDP=""
20250425123554703 DSIP <0000> sip.c:503 sip_release_call(): Release with MNCC cause(unknown 0x0)
20250425123554703 DSIP <0000> sip.c:479 cause2status(): Cause(unknown 0x0) not found in map.
20250425123554703 DSIP <0000> sip.c:527 Ending leg(0x55aa765fab90) in connected state.
SIP_Test-MNCC(15)@57e03c4134ee: Deleted conn table entry 0TC_mo_success_rel_gsm_ipv6(17)1872198934
TC_mo_success_rel_gsm_ipv6(17)@57e03c4134ee: setverdict(pass): none -> pass
20250425123554707 DMNCC <0001> mncc.c:1076 rx MNCC MNCC_REL_CNF with SDP=""
20250425123554707 DMNCC <0001> mncc.c:80 Got response(MNCC_REL_CNF), stopping timer on leg(1872198934)
20250425123554707 DMNCC <0001> mncc.c:684 leg(1872198934) was cnf released.
20250425123554707 DSIP <0000> sip.c:361 SIP event[nua_r_bye] status(200) phrase(OK) SDP((null)) 0x55aa765fab90
20250425123554707 DSIP <0000> sip.c:419 leg(0x55aa765fab90) got resp to bye
20250425123554707 DAPP <0002> call.c:90 call(5005) released.
20250425123554707 DLGLOBAL <0004> telnet_interface.c:138 Closing telnet connection r=127.0.0.1:55786<->l=127.0.0.1:4256
20250425123554708 DMNCC <0001> mncc.c:1092 Failed to read 0/Bad file descriptor. Re-connecting.
SIP_Test-MNCC(15)@57e03c4134ee: Final verdict of PTC: none
SIP_Test_SIP_EMU(16)@57e03c4134ee: Final verdict of PTC: none
TC_mo_success_rel_gsm_ipv6(17)@57e03c4134ee: Final verdict of PTC: pass
MTC@57e03c4134ee: Setting final verdict of the test case.
MTC@57e03c4134ee: Local verdict of MTC: none
MTC@57e03c4134ee: Local verdict of PTC SIP_Test-MNCC(15): none (none -> none)
MTC@57e03c4134ee: Local verdict of PTC SIP_Test_SIP_EMU(16): none (none -> none)
MTC@57e03c4134ee: Local verdict of PTC TC_mo_success_rel_gsm_ipv6(17): pass (none -> pass)
MTC@57e03c4134ee: Test case TC_mo_success_rel_gsm_ipv6 finished. Verdict: pass
MTC@57e03c4134ee: Starting external command `/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/ttcn3-tcpdump-stop.sh SIP_Tests.TC_mo_success_rel_gsm_ipv6 pass'.
Fri Apr 25 12:35:54 UTC 2025
====== SIP_Tests.TC_mo_success_rel_gsm_ipv6 pass ======

Saving talloc report from 127.0.0.1:4256 to SIP_Tests.TC_mo_success_rel_gsm_ipv6.talloc
20250425123554836 DLGLOBAL <0004> telnet_interface.c:192 Accept()ed new telnet connection r=127.0.0.1:55802<->l=127.0.0.1:4256
20250425123554836 DLGLOBAL <0004> telnet_interface.c:138 Closing telnet connection r=127.0.0.1:55802<->l=127.0.0.1:4256
Waiting for packet dumper to finish... 0 (prev_count=-1, count=14856)
Waiting for packet dumper to finish... 1 (prev_count=14856, count=21576)
MTC@57e03c4134ee: External command `/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/ttcn3-tcpdump-stop.sh SIP_Tests.TC_mo_success_rel_gsm_ipv6 pass' was executed successfully (exit status: 0).
MTC@57e03c4134ee: Starting external command `/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/ttcn3-tcpdump-start.sh SIP_Tests.TC_mo_success_rel_sip'.
------ SIP_Tests.TC_mo_success_rel_sip ------
Fri Apr 25 12:35:56 UTC 2025
/usr/bin/dumpcap -q -s 1520 -n -i any -w "/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/logs/testsuite/SIP_Tests.TC_mo_success_rel_sip.pcap" >/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/logs/testsuite/SIP_Tests.TC_mo_success_rel_sip.pcap.stdout 2>/tmp/cmderr &
Waiting for packet dumper to start... 0
MTC@57e03c4134ee: External command `/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/ttcn3-tcpdump-start.sh SIP_Tests.TC_mo_success_rel_sip' was executed successfully (exit status: 0).
MTC@57e03c4134ee: Test case TC_mo_success_rel_sip started.
MTC@57e03c4134ee: end of f_init_mncc
SIP_Test-MNCC(18)@57e03c4134ee: Warning: Re-starting timer T, which is already active (running or expired).
SIP_Test_SIP_EMU(19)@57e03c4134ee: Warning: The maximum number of open file descriptors (1048576) is greater than FD_SETSIZE (1024). Ensure that Test Ports using Install_Handler do not try to wait for events of file descriptors with values greater than FD_SETSIZE (1024). (Current caller of Install_Handler is "SIP")
MTC@57e03c4134ee: end of f_init_sip
20250425123557862 DLGLOBAL <0004> telnet_interface.c:192 Accept()ed new telnet connection r=127.0.0.1:43732<->l=127.0.0.1:4256
MTC@57e03c4134ee: end of f_init
TC_mo_success_rel_sip(20)@57e03c4134ee: Warning: Test port parameter local_sip_port is not supported on port SIP.
TC_mo_success_rel_sip(20)@57e03c4134ee: Warning: Test port parameter default_local_address is not supported on port SIP.
TC_mo_success_rel_sip(20)@57e03c4134ee: Warning: Test port parameter default_sip_protocol is not supported on port SIP.
TC_mo_success_rel_sip(20)@57e03c4134ee: Warning: Test port parameter default_dest_port is not supported on port SIP.
TC_mo_success_rel_sip(20)@57e03c4134ee: Warning: Test port parameter default_dest_address is not supported on port SIP.
20250425123559708 DMNCC <0001> mncc.c:1031 Reconnected to /tmp/mncc
20250425123559708 DMNCC <0001> mncc.c:1079 rx MNCC MNCC_SOCKET_HELLO
20250425123559708 DMNCC <0001> mncc.c:918 Got hello message version 8
SIP_Test_SIP_EMU(19)@57e03c4134ee: Created SipExpect[0] for { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "98766", password := omit }, hostPort := { host := "127.0.0.2", portField := 5060 }, urlParameters := omit, headers := omit } to be handled at TC_mo_success_rel_sip(20)
SIP_Test-MNCC(18)@57e03c4134ee: Added conn table entry 0TC_mo_success_rel_sip(20)959124490
20250425123600867 DMNCC <0001> mncc.c:1076 rx MNCC MNCC_SETUP_IND with SDP=""
20250425123600867 DAPP <0002> call.c:180 call(5006) leg(0x0x55aa7660a3b0) no new SDP in ""
20250425123600867 DAPP <0002> call.c:182 call(5006) leg(0x0x55aa7660a3b0) keep stored SDP=""
20250425123600867 DMNCC <0001> mncc.c:582 Created call(5006) with MNCC leg(959124490) IMSI(262420123456789)
20250425123600867 DMNCC <0001> mncc.c:68 Starting Timer for MNCC_RTP_CREATE
20250425123600867 DMNCC <0001> mncc.c:165 tx MNCC MNCC_RTP_CREATE with SDP=""
20250425123600867 DMNCC <0001> mncc.c:1076 rx MNCC MNCC_RTP_CREATE with SDP=""
20250425123600867 DAPP <0002> call.c:180 call(5006) leg(0x0x55aa7660a3b0) no new SDP in ""
20250425123600867 DAPP <0002> call.c:182 call(5006) leg(0x0x55aa7660a3b0) keep stored SDP=""
20250425123600867 DMNCC <0001> mncc.c:464 RTP continue leg(959124490) ip(5.6.7.8), port(5678) pt(0) ptm(768)
20250425123600867 DMNCC <0001> mncc.c:80 Got response(MNCC_RTP_CREATE), stopping timer on leg(959124490)
20250425123600867 DMNCC <0001> mncc.c:137 tx MNCC MNCC_CALL_PROC_REQ with SDP=""
20250425123600868 DSIP <0000> sip.c:361 SIP event[nua_i_state] status(0) phrase(INVITE sent) SDP((null)) 0x55aa765fab90
20250425123600868 DSIP <0000> sip.c:461 Did not handle event[nua_i_state] status(0)
SIP_Test_SIP_EMU(19)@57e03c4134ee: Found SipExpect[0] for { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "98766", password := omit }, hostPort := { host := "127.0.0.2", portField := 5060 }, urlParameters := omit, headers := omit } handled at TC_mo_success_rel_sip(20)
SIP_Test_SIP_EMU(19)@57e03c4134ee: Added SIP Call Table entry [0] for "afa1eb7d-9c74-123e-29b0-ea9ab35fbf54" at TC_mo_success_rel_sip(20)
20250425123600872 DSIP <0000> sip.c:361 SIP event[nua_r_invite] status(180) phrase(Ringing) SDP((null)) 0x55aa765fab90
20250425123600872 DAPP <0002> call.c:180 call(5006) leg(0x0x55aa765fab90) no new SDP in NULL
20250425123600872 DAPP <0002> call.c:182 call(5006) leg(0x0x55aa765fab90) keep stored SDP=""
20250425123600872 DSIP <0000> sip.c:88 leg(0x55aa765fab90) is now progressing.
20250425123600872 DMNCC <0001> mncc.c:137 tx MNCC MNCC_ALERT_REQ with SDP=""
20250425123600872 DSIP <0000> sip.c:361 SIP event[nua_i_state] status(180) phrase(Ringing) SDP((null)) 0x55aa765fab90
20250425123600872 DSIP <0000> sip.c:461 Did not handle event[nua_i_state] status(180)
20250425123600873 DSIP <0000> sip.c:361 SIP event[nua_r_invite] status(200) phrase(OK) SDP(v=0
o=Osmocom 0 0 IN IP4 1.1.1.1
s=GSM Call
c=IN IP4 1.2.3.4
t=0 0
m=audio 1234 RTP/AVP 0
a=rtpmap:0 GSM/8000
) 0x55aa765fab90
20250425123600873 DAPP <0002> call.c:186 call(5006) leg(0x0x55aa765fab90) received new SDP="v=0\r\no=Osmocom 0 0 IN IP4 1.1.1.1\r\ns=GSM Call\r\nc=IN IP4 1.2.3.4\r\nt=0 0\r\nm=audio 1234 RTP/AVP 0\r\na=rtpmap:0 GSM/8000\r\n"
20250425123600873 DAPP <0002> call.c:187 call(5006) leg(0x0x55aa765fab90) replaced old SDP=""
20250425123600873 DSIP <0000> sip.c:110 leg(0x55aa765fab90) is now connected(afa1eb7d-9c74-123e-29b0-ea9ab35fbf54).
20250425123600873 DMNCC <0001> mncc.c:212 SEND rtp_connect: IP=(1.2.3.4) PORT=(1234)
20250425123600873 DMNCC <0001> mncc.c:165 tx MNCC MNCC_RTP_CONNECT with SDP="v=0\r\no=Osmocom 0 0 IN IP4 1.1.1.1\r\ns=GSM Call\r\nc=IN IP4 1.2.3.4\r\nt=0 0\r\nm=audio 1234 RTP/AVP 0\r\na=rtpmap:0 GSM/8000\r\n"
20250425123600873 DMNCC <0001> mncc.c:68 Starting Timer for MNCC_SETUP_COMPL_IND
20250425123600873 DMNCC <0001> mncc.c:137 tx MNCC MNCC_SETUP_RSP with SDP=""
20250425123600873 DSIP <0000> sip.c:361 SIP event[nua_i_state] status(200) phrase(OK) SDP((null)) 0x55aa765fab90
20250425123600873 DSIP <0000> sip.c:461 Did not handle event[nua_i_state] status(200)
20250425123600873 DSIP <0000> sip.c:361 SIP event[nua_i_state] status(200) phrase(ACK sent) SDP((null)) 0x55aa765fab90
20250425123600873 DSIP <0000> sip.c:461 Did not handle event[nua_i_state] status(200)
20250425123600873 DSIP <0000> sip.c:361 SIP event[nua_i_active] status(200) phrase(Call active) SDP((null)) 0x55aa765fab90
20250425123600873 DSIP <0000> sip.c:461 Did not handle event[nua_i_active] status(200)
TC_mo_success_rel_sip(20)@57e03c4134ee: SDP update from "" to "v=0\r\no=Osmocom 0 0 IN IP4 1.1.1.1\r\ns=GSM Call\r\nc=IN IP4 1.2.3.4\r\nt=0 0\r\nm=audio 1234 RTP/AVP 0\r\na=rtpmap:0 GSM/8000\r\n"
20250425123600873 DMNCC <0001> mncc.c:1076 rx MNCC MNCC_SETUP_COMPL_IND with SDP=""
20250425123600873 DAPP <0002> call.c:180 call(5006) leg(0x0x55aa7660a3b0) no new SDP in ""
20250425123600873 DAPP <0002> call.c:182 call(5006) leg(0x0x55aa7660a3b0) keep stored SDP=""
20250425123600873 DMNCC <0001> mncc.c:699 leg(959124490) is now connected.
20250425123600873 DMNCC <0001> mncc.c:80 Got response(MNCC_SETUP_COMPL_IND), stopping timer on leg(959124490)
20250425123602876 DSIP <0000> sip.c:361 SIP event[nua_i_bye] status(200) phrase(Session Terminated) SDP((null)) 0x55aa765fab90
20250425123602876 DSIP <0000> sip.c:428 leg(0x55aa765fab90) got bye, releasing.
20250425123602876 DMNCC <0001> mncc.c:332 Releasing call in non-initial leg(959124490) cause(unknown 0x0)
20250425123602876 DMNCC <0001> mncc.c:68 Starting Timer for MNCC_REL_IND
20250425123602877 DMNCC <0001> mncc.c:137 tx MNCC MNCC_DISC_REQ with SDP=""
20250425123602877 DMNCC <0001> mncc.c:1076 rx MNCC MNCC_REL_IND with SDP=""
20250425123602877 DMNCC <0001> mncc.c:658 Rcvd MNCC_REL_IND, Cause: unknown 0x0
20250425123602877 DMNCC <0001> mncc.c:80 Got response(MNCC_REL_IND), stopping timer on leg(959124490)
20250425123602877 DMNCC <0001> mncc.c:670 leg(959124490) was released.
20250425123602877 DAPP <0002> call.c:90 call(5006) released.
SIP_Test-MNCC(18)@57e03c4134ee: Deleted conn table entry 0TC_mo_success_rel_sip(20)959124490
TC_mo_success_rel_sip(20)@57e03c4134ee: setverdict(pass): none -> pass
20250425123602878 DLGLOBAL <0004> telnet_interface.c:138 Closing telnet connection r=127.0.0.1:43732<->l=127.0.0.1:4256
20250425123602878 DMNCC <0001> mncc.c:1092 Failed to read 0/Bad file descriptor. Re-connecting.
SIP_Test-MNCC(18)@57e03c4134ee: Final verdict of PTC: none
TC_mo_success_rel_sip(20)@57e03c4134ee: Final verdict of PTC: pass
SIP_Test_SIP_EMU(19)@57e03c4134ee: Final verdict of PTC: none
MTC@57e03c4134ee: Setting final verdict of the test case.
MTC@57e03c4134ee: Local verdict of MTC: none
MTC@57e03c4134ee: Local verdict of PTC SIP_Test-MNCC(18): none (none -> none)
MTC@57e03c4134ee: Local verdict of PTC SIP_Test_SIP_EMU(19): none (none -> none)
MTC@57e03c4134ee: Local verdict of PTC TC_mo_success_rel_sip(20): pass (none -> pass)
MTC@57e03c4134ee: Test case TC_mo_success_rel_sip finished. Verdict: pass
MTC@57e03c4134ee: Starting external command `/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/ttcn3-tcpdump-stop.sh SIP_Tests.TC_mo_success_rel_sip pass'.
Fri Apr 25 12:36:02 UTC 2025
====== SIP_Tests.TC_mo_success_rel_sip pass ======

Saving talloc report from 127.0.0.1:4256 to SIP_Tests.TC_mo_success_rel_sip.talloc
20250425123602906 DLGLOBAL <0004> telnet_interface.c:192 Accept()ed new telnet connection r=127.0.0.1:43744<->l=127.0.0.1:4256
20250425123602906 DLGLOBAL <0004> telnet_interface.c:138 Closing telnet connection r=127.0.0.1:43744<->l=127.0.0.1:4256
Waiting for packet dumper to finish... 0 (prev_count=-1, count=14864)
Waiting for packet dumper to finish... 1 (prev_count=14864, count=20732)
MTC@57e03c4134ee: External command `/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/ttcn3-tcpdump-stop.sh SIP_Tests.TC_mo_success_rel_sip pass' was executed successfully (exit status: 0).
MTC@57e03c4134ee: Starting external command `/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/ttcn3-tcpdump-start.sh SIP_Tests.TC_mo_setup_disc_late_rtp'.
------ SIP_Tests.TC_mo_setup_disc_late_rtp ------
Fri Apr 25 12:36:04 UTC 2025
/usr/bin/dumpcap -q -s 1520 -n -i any -w "/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/logs/testsuite/SIP_Tests.TC_mo_setup_disc_late_rtp.pcap" >/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/logs/testsuite/SIP_Tests.TC_mo_setup_disc_late_rtp.pcap.stdout 2>/tmp/cmderr &
Waiting for packet dumper to start... 0
MTC@57e03c4134ee: External command `/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/ttcn3-tcpdump-start.sh SIP_Tests.TC_mo_setup_disc_late_rtp' was executed successfully (exit status: 0).
MTC@57e03c4134ee: Test case TC_mo_setup_disc_late_rtp started.
MTC@57e03c4134ee: end of f_init_mncc
SIP_Test-MNCC(21)@57e03c4134ee: Warning: Re-starting timer T, which is already active (running or expired).
SIP_Test_SIP_EMU(22)@57e03c4134ee: Warning: The maximum number of open file descriptors (1048576) is greater than FD_SETSIZE (1024). Ensure that Test Ports using Install_Handler do not try to wait for events of file descriptors with values greater than FD_SETSIZE (1024). (Current caller of Install_Handler is "SIP")
MTC@57e03c4134ee: end of f_init_sip
20250425123605937 DLGLOBAL <0004> telnet_interface.c:192 Accept()ed new telnet connection r=127.0.0.1:55342<->l=127.0.0.1:4256
MTC@57e03c4134ee: end of f_init
TC_mo_setup_disc_late_rtp(23)@57e03c4134ee: Warning: Test port parameter local_sip_port is not supported on port SIP.
TC_mo_setup_disc_late_rtp(23)@57e03c4134ee: Warning: Test port parameter default_local_address is not supported on port SIP.
TC_mo_setup_disc_late_rtp(23)@57e03c4134ee: Warning: Test port parameter default_sip_protocol is not supported on port SIP.
TC_mo_setup_disc_late_rtp(23)@57e03c4134ee: Warning: Test port parameter default_dest_port is not supported on port SIP.
TC_mo_setup_disc_late_rtp(23)@57e03c4134ee: Warning: Test port parameter default_dest_address is not supported on port SIP.
20250425123607879 DMNCC <0001> mncc.c:1031 Reconnected to /tmp/mncc
20250425123607879 DMNCC <0001> mncc.c:1079 rx MNCC MNCC_SOCKET_HELLO
20250425123607879 DMNCC <0001> mncc.c:918 Got hello message version 8
SIP_Test_SIP_EMU(22)@57e03c4134ee: Created SipExpect[0] for { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "98766", password := omit }, hostPort := { host := "127.0.0.2", portField := 5060 }, urlParameters := omit, headers := omit } to be handled at TC_mo_setup_disc_late_rtp(23)
SIP_Test-MNCC(21)@57e03c4134ee: Added conn table entry 0TC_mo_setup_disc_late_rtp(23)1880923946
20250425123608946 DMNCC <0001> mncc.c:1076 rx MNCC MNCC_SETUP_IND with SDP=""
20250425123608946 DAPP <0002> call.c:180 call(5007) leg(0x0x55aa7660a3b0) no new SDP in ""
20250425123608946 DAPP <0002> call.c:182 call(5007) leg(0x0x55aa7660a3b0) keep stored SDP=""
20250425123608946 DMNCC <0001> mncc.c:582 Created call(5007) with MNCC leg(1880923946) IMSI(262420123456789)
20250425123608946 DMNCC <0001> mncc.c:68 Starting Timer for MNCC_RTP_CREATE
20250425123608946 DMNCC <0001> mncc.c:165 tx MNCC MNCC_RTP_CREATE with SDP=""
20250425123608946 DMNCC <0001> mncc.c:1076 rx MNCC MNCC_DISC_IND with SDP=""
20250425123608946 DMNCC <0001> mncc.c:634 Rcvd MNCC_DISC_IND, Cause: unknown 0x0
20250425123608946 DMNCC <0001> mncc.c:636 leg(1880923946) was disconnected. Releasing
20250425123608946 DMNCC <0001> mncc.c:68 Starting Timer for MNCC_REL_CNF
20250425123608946 DMNCC <0001> mncc.c:137 tx MNCC MNCC_REL_REQ with SDP=""
20250425123608946 DMNCC <0001> mncc.c:1076 rx MNCC MNCC_RTP_CREATE with SDP=""
20250425123608946 DMNCC <0001> mncc.c:452 call(1880923946) can not be found
20250425123608946 DMNCC <0001> mncc.c:137 tx MNCC MNCC_REJ_REQ with SDP=""
20250425123613946 DMNCC <0001> mncc.c:53 command(0x112) never arrived for leg(1880923946)
20250425123613946 DAPP <0002> call.c:90 call(5007) released.
TC_mo_setup_disc_late_rtp(23)@57e03c4134ee: setverdict(pass): none -> pass
20250425123618957 DLGLOBAL <0004> telnet_interface.c:138 Closing telnet connection r=127.0.0.1:55342<->l=127.0.0.1:4256
20250425123618957 DMNCC <0001> mncc.c:1092 Failed to read 0/Bad file descriptor. Re-connecting.
SIP_Test-MNCC(21)@57e03c4134ee: Final verdict of PTC: none
TC_mo_setup_disc_late_rtp(23)@57e03c4134ee: Final verdict of PTC: pass
SIP_Test_SIP_EMU(22)@57e03c4134ee: Final verdict of PTC: none
MTC@57e03c4134ee: Setting final verdict of the test case.
MTC@57e03c4134ee: Local verdict of MTC: none
MTC@57e03c4134ee: Local verdict of PTC SIP_Test-MNCC(21): none (none -> none)
MTC@57e03c4134ee: Local verdict of PTC SIP_Test_SIP_EMU(22): none (none -> none)
MTC@57e03c4134ee: Local verdict of PTC TC_mo_setup_disc_late_rtp(23): pass (none -> pass)
MTC@57e03c4134ee: Test case TC_mo_setup_disc_late_rtp finished. Verdict: pass
MTC@57e03c4134ee: Starting external command `/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/ttcn3-tcpdump-stop.sh SIP_Tests.TC_mo_setup_disc_late_rtp pass'.
Fri Apr 25 12:36:18 UTC 2025
====== SIP_Tests.TC_mo_setup_disc_late_rtp pass ======

Saving talloc report from 127.0.0.1:4256 to SIP_Tests.TC_mo_setup_disc_late_rtp.talloc
20250425123618979 DLGLOBAL <0004> telnet_interface.c:192 Accept()ed new telnet connection r=127.0.0.1:54042<->l=127.0.0.1:4256
20250425123618979 DLGLOBAL <0004> telnet_interface.c:138 Closing telnet connection r=127.0.0.1:54042<->l=127.0.0.1:4256
Waiting for packet dumper to finish... 0 (prev_count=-1, count=6552)
Waiting for packet dumper to finish... 1 (prev_count=6552, count=9340)
MTC@57e03c4134ee: External command `/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/ttcn3-tcpdump-stop.sh SIP_Tests.TC_mo_setup_disc_late_rtp pass' was executed successfully (exit status: 0).
MTC@57e03c4134ee: Starting external command `/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/ttcn3-tcpdump-start.sh SIP_Tests.TC_mt_with_sdp'.
------ SIP_Tests.TC_mt_with_sdp ------
Fri Apr 25 12:36:21 UTC 2025
/usr/bin/dumpcap -q -s 1520 -n -i any -w "/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/logs/testsuite/SIP_Tests.TC_mt_with_sdp.pcap" >/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/logs/testsuite/SIP_Tests.TC_mt_with_sdp.pcap.stdout 2>/tmp/cmderr &
Waiting for packet dumper to start... 0
MTC@57e03c4134ee: External command `/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/ttcn3-tcpdump-start.sh SIP_Tests.TC_mt_with_sdp' was executed successfully (exit status: 0).
MTC@57e03c4134ee: Test case TC_mt_with_sdp started.
MTC@57e03c4134ee: end of f_init_mncc
SIP_Test-MNCC(24)@57e03c4134ee: Warning: Re-starting timer T, which is already active (running or expired).
SIP_Test_SIP_EMU(25)@57e03c4134ee: Warning: The maximum number of open file descriptors (1048576) is greater than FD_SETSIZE (1024). Ensure that Test Ports using Install_Handler do not try to wait for events of file descriptors with values greater than FD_SETSIZE (1024). (Current caller of Install_Handler is "SIP")
MTC@57e03c4134ee: end of f_init_sip
20250425123622050 DLGLOBAL <0004> telnet_interface.c:192 Accept()ed new telnet connection r=127.0.0.1:54054<->l=127.0.0.1:4256
MTC@57e03c4134ee: end of f_init
TC_mt_with_sdp(26)@57e03c4134ee: Warning: Test port parameter local_sip_port is not supported on port SIP.
TC_mt_with_sdp(26)@57e03c4134ee: Warning: Test port parameter default_local_address is not supported on port SIP.
TC_mt_with_sdp(26)@57e03c4134ee: Warning: Test port parameter default_sip_protocol is not supported on port SIP.
TC_mt_with_sdp(26)@57e03c4134ee: Warning: Test port parameter default_dest_port is not supported on port SIP.
TC_mt_with_sdp(26)@57e03c4134ee: Warning: Test port parameter default_dest_address is not supported on port SIP.
20250425123623958 DMNCC <0001> mncc.c:1031 Reconnected to /tmp/mncc
20250425123623958 DMNCC <0001> mncc.c:1079 rx MNCC MNCC_SOCKET_HELLO
20250425123623958 DMNCC <0001> mncc.c:918 Got hello message version 8
SIP_Test-MNCC(24)@57e03c4134ee: Created MnccExpect[0] for "98766" to be handled at TC_mt_with_sdp(26)
SIP_Test_SIP_EMU(25)@57e03c4134ee: Added SIP Call Table entry [0] for "B708833753A13A1" at TC_mt_with_sdp(26)
20250425123625066 DSIP <0000> sip.c:361 SIP event[nua_i_invite] status(100) phrase(Trying) SDP(v=0
o=Osmocom 0 0 IN IP4 1.1.1.1
s=GSM Call
c=IN IP4 1.2.3.4
t=0 0
m=audio 1234 RTP/AVP 0
a=rtpmap:0 GSM/8000
) (nil)
20250425123625066 DSIP <0000> sip.c:436 Processing INVITE Call-ID: B708833753A13A1
20250425123625066 DSIP <0000> sip.c:126 Incoming call(B708833753A13A1) handle(0x55aa76604980)
20250425123625066 DSIP <0000> sip.c:189 SDP Extracted: IP=(1.2.3.4) PORT=(1234) PAYLOAD=(0).
20250425123625066 DAPP <0002> call.c:186 call(5008) leg(0x0x55aa7660a3b0) received new SDP="v=0\r\no=Osmocom 0 0 IN IP4 1.1.1.1\r\ns=GSM Call\r\nc=IN IP4 1.2.3.4\r\nt=0 0\r\nm=audio 1234 RTP/AVP 0\r\na=rtpmap:0 GSM/8000\r\n"
20250425123625066 DAPP <0002> call.c:187 call(5008) leg(0x0x55aa7660a3b0) replaced old SDP=""
20250425123625066 DMNCC <0001> mncc.c:137 tx MNCC MNCC_SETUP_REQ with SDP="v=0\r\no=Osmocom 0 0 IN IP4 1.1.1.1\r\ns=GSM Call\r\nc=IN IP4 1.2.3.4\r\nt=0 0\r\nm=audio 1234 RTP/AVP 0\r\na=rtpmap:0 GSM/8000\r\n"
20250425123625066 DSIP <0000> sip.c:361 SIP event[nua_i_state] status(100) phrase(Trying) SDP((null)) 0x55aa7660a3b0
20250425123625066 DSIP <0000> sip.c:461 Did not handle event[nua_i_state] status(100)
SIP_Test-MNCC(24)@57e03c4134ee: Found MnccExpect[0] for "98766" handled at TC_mt_with_sdp(26)
SIP_Test-MNCC(24)@57e03c4134ee: Added conn table entry 0TC_mt_with_sdp(26)5008
TC_mt_with_sdp(26)@57e03c4134ee: SDP update from "" to "v=0\r\no=Osmocom 0 0 IN IP4 1.1.1.1\r\ns=GSM Call\r\nc=IN IP4 1.2.3.4\r\nt=0 0\r\nm=audio 1234 RTP/AVP 0\r\na=rtpmap:0 GSM/8000\r\n"
20250425123625069 DMNCC <0001> mncc.c:1076 rx MNCC MNCC_CALL_CONF_IND with SDP=""
20250425123625069 DAPP <0002> call.c:180 call(5008) leg(0x0x55aa766097e0) no new SDP in ""
20250425123625069 DAPP <0002> call.c:182 call(5008) leg(0x0x55aa766097e0) keep stored SDP=""
20250425123625069 DMNCC <0001> mncc.c:744 leg(5008) confirmed. creating RTP socket.
20250425123625069 DMNCC <0001> mncc.c:68 Starting Timer for MNCC_RTP_CREATE
20250425123625069 DMNCC <0001> mncc.c:165 tx MNCC MNCC_RTP_CREATE with SDP=""
20250425123625069 DMNCC <0001> mncc.c:1076 rx MNCC MNCC_RTP_CREATE with SDP="v=0\r\no=Osmocom 0 0 IN IP4 1.1.1.1\r\ns=GSM Call\r\nc=IN IP4 5.6.7.8\r\nt=0 0\r\nm=audio 5678 RTP/AVP 0\r\na=rtpmap:0 GSM/8000\r\n"
20250425123625069 DAPP <0002> call.c:186 call(5008) leg(0x0x55aa766097e0) received new SDP="v=0\r\no=Osmocom 0 0 IN IP4 1.1.1.1\r\ns=GSM Call\r\nc=IN IP4 5.6.7.8\r\nt=0 0\r\nm=audio 5678 RTP/AVP 0\r\na=rtpmap:0 GSM/8000\r\n"
20250425123625069 DAPP <0002> call.c:187 call(5008) leg(0x0x55aa766097e0) replaced old SDP=""
20250425123625069 DMNCC <0001> mncc.c:464 RTP continue leg(5008) ip(5.6.7.8), port(5678) pt(0) ptm(0)
20250425123625069 DMNCC <0001> mncc.c:80 Got response(MNCC_RTP_CREATE), stopping timer on leg(5008)
20250425123625070 DMNCC <0001> mncc.c:1076 rx MNCC MNCC_ALERT_IND with SDP=""
20250425123625070 DAPP <0002> call.c:180 call(5008) leg(0x0x55aa766097e0) no new SDP in ""
20250425123625070 DAPP <0002> call.c:182 call(5008) leg(0x0x55aa766097e0) keep stored SDP="v=0\r\no=Osmocom 0 0 IN IP4 1.1.1.1\r\ns=GSM Call\r\nc=IN IP4 5.6.7.8\r\nt=0 0\r\nm=audio 5678 RTP/AVP 0\r\na=rtpmap:0 GSM/8000\r\n"
20250425123625070 DMNCC <0001> mncc.c:764 leg(5008) is alerting.
20250425123625070 DSIP <0000> sip.c:361 SIP event[nua_i_state] status(180) phrase(Ringing) SDP((null)) 0x55aa7660a3b0
20250425123625070 DSIP <0000> sip.c:461 Did not handle event[nua_i_state] status(180)
20250425123625071 DMNCC <0001> mncc.c:1076 rx MNCC MNCC_SETUP_CNF with SDP=""
20250425123625071 DAPP <0002> call.c:180 call(5008) leg(0x0x55aa766097e0) no new SDP in ""
20250425123625071 DAPP <0002> call.c:182 call(5008) leg(0x0x55aa766097e0) keep stored SDP="v=0\r\no=Osmocom 0 0 IN IP4 1.1.1.1\r\ns=GSM Call\r\nc=IN IP4 5.6.7.8\r\nt=0 0\r\nm=audio 5678 RTP/AVP 0\r\na=rtpmap:0 GSM/8000\r\n"
20250425123625071 DMNCC <0001> mncc.c:844 leg(5008) setup completed
20250425123625071 DMNCC <0001> mncc.c:212 SEND rtp_connect: IP=(1.2.3.4) PORT=(1234)
20250425123625071 DMNCC <0001> mncc.c:165 tx MNCC MNCC_RTP_CONNECT with SDP="v=0\r\no=Osmocom 0 0 IN IP4 1.1.1.1\r\ns=GSM Call\r\nc=IN IP4 1.2.3.4\r\nt=0 0\r\nm=audio 1234 RTP/AVP 0\r\na=rtpmap:0 GSM/8000\r\n"
20250425123625071 DMNCC <0001> mncc.c:137 tx MNCC MNCC_SETUP_COMPL_REQ with SDP=""
20250425123625071 DSIP <0000> sip.c:361 SIP event[nua_i_state] status(200) phrase(OK) SDP((null)) 0x55aa7660a3b0
20250425123625071 DSIP <0000> sip.c:461 Did not handle event[nua_i_state] status(200)
20250425123625072 DSIP <0000> sip.c:361 SIP event[nua_i_ack] status(200) phrase(OK) SDP((null)) 0x55aa7660a3b0
20250425123625072 DSIP <0000> sip.c:361 SIP event[nua_i_state] status(200) phrase(OK) SDP((null)) 0x55aa7660a3b0
20250425123625072 DSIP <0000> sip.c:461 Did not handle event[nua_i_state] status(200)
20250425123625072 DSIP <0000> sip.c:361 SIP event[nua_i_active] status(200) phrase(Call active) SDP((null)) 0x55aa7660a3b0
20250425123625072 DSIP <0000> sip.c:461 Did not handle event[nua_i_active] status(200)
20250425123627073 DMNCC <0001> mncc.c:1076 rx MNCC MNCC_DISC_IND with SDP=""
20250425123627073 DMNCC <0001> mncc.c:634 Rcvd MNCC_DISC_IND, Cause: unknown 0x0
20250425123627073 DMNCC <0001> mncc.c:636 leg(5008) was disconnected. Releasing
20250425123627073 DMNCC <0001> mncc.c:68 Starting Timer for MNCC_REL_CNF
20250425123627073 DMNCC <0001> mncc.c:137 tx MNCC MNCC_REL_REQ with SDP=""
20250425123627073 DSIP <0000> sip.c:503 sip_release_call(): Release with MNCC cause(unknown 0x0)
20250425123627073 DSIP <0000> sip.c:479 cause2status(): Cause(unknown 0x0) not found in map.
20250425123627073 DSIP <0000> sip.c:527 Ending leg(0x55aa7660a3b0) in connected state.
20250425123627075 DMNCC <0001> mncc.c:1076 rx MNCC MNCC_REL_CNF with SDP=""
20250425123627075 DMNCC <0001> mncc.c:80 Got response(MNCC_REL_CNF), stopping timer on leg(5008)
20250425123627075 DMNCC <0001> mncc.c:684 leg(5008) was cnf released.
SIP_Test-MNCC(24)@57e03c4134ee: Deleted conn table entry 0TC_mt_with_sdp(26)5008
TC_mt_with_sdp(26)@57e03c4134ee: setverdict(pass): none -> pass
20250425123627075 DLGLOBAL <0004> telnet_interface.c:138 Closing telnet connection r=127.0.0.1:54054<->l=127.0.0.1:4256
20250425123627075 DMNCC <0001> mncc.c:1092 Failed to read 0/Bad file descriptor. Re-connecting.
SIP_Test-MNCC(24)@57e03c4134ee: Final verdict of PTC: none
TC_mt_with_sdp(26)@57e03c4134ee: Final verdict of PTC: pass
20250425123627076 DSIP <0000> sip.c:361 SIP event[nua_r_bye] status(200) phrase(OK) SDP((null)) 0x55aa7660a3b0
20250425123627076 DSIP <0000> sip.c:419 leg(0x55aa7660a3b0) got resp to bye
20250425123627076 DAPP <0002> call.c:90 call(5008) released.
SIP_Test_SIP_EMU(25)@57e03c4134ee: Final verdict of PTC: none
MTC@57e03c4134ee: Setting final verdict of the test case.
MTC@57e03c4134ee: Local verdict of MTC: none
MTC@57e03c4134ee: Local verdict of PTC SIP_Test-MNCC(24): none (none -> none)
MTC@57e03c4134ee: Local verdict of PTC SIP_Test_SIP_EMU(25): none (none -> none)
MTC@57e03c4134ee: Local verdict of PTC TC_mt_with_sdp(26): pass (none -> pass)
MTC@57e03c4134ee: Test case TC_mt_with_sdp finished. Verdict: pass
MTC@57e03c4134ee: Starting external command `/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/ttcn3-tcpdump-stop.sh SIP_Tests.TC_mt_with_sdp pass'.
Fri Apr 25 12:36:27 UTC 2025
====== SIP_Tests.TC_mt_with_sdp pass ======

Saving talloc report from 127.0.0.1:4256 to SIP_Tests.TC_mt_with_sdp.talloc
20250425123627101 DLGLOBAL <0004> telnet_interface.c:192 Accept()ed new telnet connection r=127.0.0.1:52418<->l=127.0.0.1:4256
20250425123627101 DLGLOBAL <0004> telnet_interface.c:138 Closing telnet connection r=127.0.0.1:52418<->l=127.0.0.1:4256
Waiting for packet dumper to finish... 0 (prev_count=-1, count=15604)
Waiting for packet dumper to finish... 1 (prev_count=15604, count=22256)
MTC@57e03c4134ee: External command `/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/ttcn3-tcpdump-stop.sh SIP_Tests.TC_mt_with_sdp pass' was executed successfully (exit status: 0).
MTC@57e03c4134ee: Starting external command `/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/ttcn3-tcpdump-start.sh SIP_Tests.TC_mo_with_sdp'.
------ SIP_Tests.TC_mo_with_sdp ------
Fri Apr 25 12:36:29 UTC 2025
/usr/bin/dumpcap -q -s 1520 -n -i any -w "/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/logs/testsuite/SIP_Tests.TC_mo_with_sdp.pcap" >/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/logs/testsuite/SIP_Tests.TC_mo_with_sdp.pcap.stdout 2>/tmp/cmderr &
Waiting for packet dumper to start... 0
MTC@57e03c4134ee: External command `/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/ttcn3-tcpdump-start.sh SIP_Tests.TC_mo_with_sdp' was executed successfully (exit status: 0).
MTC@57e03c4134ee: Test case TC_mo_with_sdp started.
MTC@57e03c4134ee: end of f_init_mncc
SIP_Test-MNCC(27)@57e03c4134ee: Warning: Re-starting timer T, which is already active (running or expired).
SIP_Test_SIP_EMU(28)@57e03c4134ee: Warning: The maximum number of open file descriptors (1048576) is greater than FD_SETSIZE (1024). Ensure that Test Ports using Install_Handler do not try to wait for events of file descriptors with values greater than FD_SETSIZE (1024). (Current caller of Install_Handler is "SIP")
MTC@57e03c4134ee: end of f_init_sip
20250425123630146 DLGLOBAL <0004> telnet_interface.c:192 Accept()ed new telnet connection r=127.0.0.1:52426<->l=127.0.0.1:4256
MTC@57e03c4134ee: end of f_init
TC_mo_with_sdp(29)@57e03c4134ee: Warning: Test port parameter local_sip_port is not supported on port SIP.
TC_mo_with_sdp(29)@57e03c4134ee: Warning: Test port parameter default_local_address is not supported on port SIP.
TC_mo_with_sdp(29)@57e03c4134ee: Warning: Test port parameter default_sip_protocol is not supported on port SIP.
TC_mo_with_sdp(29)@57e03c4134ee: Warning: Test port parameter default_dest_port is not supported on port SIP.
TC_mo_with_sdp(29)@57e03c4134ee: Warning: Test port parameter default_dest_address is not supported on port SIP.
20250425123632076 DMNCC <0001> mncc.c:1031 Reconnected to /tmp/mncc
20250425123632077 DMNCC <0001> mncc.c:1079 rx MNCC MNCC_SOCKET_HELLO
20250425123632077 DMNCC <0001> mncc.c:918 Got hello message version 8
SIP_Test_SIP_EMU(28)@57e03c4134ee: Created SipExpect[0] for { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "98766", password := omit }, hostPort := { host := "127.0.0.2", portField := 5060 }, urlParameters := omit, headers := omit } to be handled at TC_mo_with_sdp(29)
SIP_Test-MNCC(27)@57e03c4134ee: Added conn table entry 0TC_mo_with_sdp(29)1849538617
20250425123633155 DMNCC <0001> mncc.c:1076 rx MNCC MNCC_SETUP_IND with SDP="v=0\r\no=Osmocom 0 0 IN IP4 1.1.1.1\r\ns=GSM Call\r\nc=IN IP4 5.6.7.8\r\nt=0 0\r\nm=audio 5678 RTP/AVP 0\r\na=rtpmap:0 GSM/8000\r\n"
20250425123633155 DAPP <0002> call.c:186 call(5009) leg(0x0x55aa766097e0) received new SDP="v=0\r\no=Osmocom 0 0 IN IP4 1.1.1.1\r\ns=GSM Call\r\nc=IN IP4 5.6.7.8\r\nt=0 0\r\nm=audio 5678 RTP/AVP 0\r\na=rtpmap:0 GSM/8000\r\n"
20250425123633155 DAPP <0002> call.c:187 call(5009) leg(0x0x55aa766097e0) replaced old SDP=""
20250425123633155 DMNCC <0001> mncc.c:582 Created call(5009) with MNCC leg(1849538617) IMSI(262420123456789)
20250425123633155 DMNCC <0001> mncc.c:68 Starting Timer for MNCC_RTP_CREATE
20250425123633155 DMNCC <0001> mncc.c:165 tx MNCC MNCC_RTP_CREATE with SDP=""
20250425123633156 DMNCC <0001> mncc.c:1076 rx MNCC MNCC_RTP_CREATE with SDP=""
20250425123633156 DAPP <0002> call.c:180 call(5009) leg(0x0x55aa766097e0) no new SDP in ""
20250425123633156 DAPP <0002> call.c:182 call(5009) leg(0x0x55aa766097e0) keep stored SDP="v=0\r\no=Osmocom 0 0 IN IP4 1.1.1.1\r\ns=GSM Call\r\nc=IN IP4 5.6.7.8\r\nt=0 0\r\nm=audio 5678 RTP/AVP 0\r\na=rtpmap:0 GSM/8000\r\n"
20250425123633156 DMNCC <0001> mncc.c:464 RTP continue leg(1849538617) ip(5.6.7.8), port(5678) pt(0) ptm(768)
20250425123633156 DMNCC <0001> mncc.c:80 Got response(MNCC_RTP_CREATE), stopping timer on leg(1849538617)
20250425123633156 DMNCC <0001> mncc.c:137 tx MNCC MNCC_CALL_PROC_REQ with SDP=""
20250425123633156 DSIP <0000> sip.c:361 SIP event[nua_i_state] status(0) phrase(INVITE sent) SDP((null)) 0x55aa76608fc0
20250425123633156 DSIP <0000> sip.c:461 Did not handle event[nua_i_state] status(0)
SIP_Test_SIP_EMU(28)@57e03c4134ee: Found SipExpect[0] for { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "98766", password := omit }, hostPort := { host := "127.0.0.2", portField := 5060 }, urlParameters := omit, headers := omit } handled at TC_mo_with_sdp(29)
SIP_Test_SIP_EMU(28)@57e03c4134ee: Added SIP Call Table entry [0] for "c2e0b2ab-9c74-123e-29b0-ea9ab35fbf54" at TC_mo_with_sdp(29)
20250425123633161 DSIP <0000> sip.c:361 SIP event[nua_r_invite] status(180) phrase(Ringing) SDP((null)) 0x55aa76608fc0
20250425123633161 DAPP <0002> call.c:180 call(5009) leg(0x0x55aa76608fc0) no new SDP in NULL
20250425123633161 DAPP <0002> call.c:182 call(5009) leg(0x0x55aa76608fc0) keep stored SDP=""
20250425123633161 DSIP <0000> sip.c:88 leg(0x55aa76608fc0) is now progressing.
20250425123633161 DMNCC <0001> mncc.c:137 tx MNCC MNCC_ALERT_REQ with SDP=""
20250425123633161 DSIP <0000> sip.c:361 SIP event[nua_i_state] status(180) phrase(Ringing) SDP((null)) 0x55aa76608fc0
20250425123633161 DSIP <0000> sip.c:461 Did not handle event[nua_i_state] status(180)
20250425123633162 DSIP <0000> sip.c:361 SIP event[nua_r_invite] status(200) phrase(OK) SDP(v=0
o=Osmocom 0 0 IN IP4 1.1.1.1
s=GSM Call
c=IN IP4 1.2.3.4
t=0 0
m=audio 1234 RTP/AVP 0
a=rtpmap:0 GSM/8000
) 0x55aa76608fc0
20250425123633162 DAPP <0002> call.c:186 call(5009) leg(0x0x55aa76608fc0) received new SDP="v=0\r\no=Osmocom 0 0 IN IP4 1.1.1.1\r\ns=GSM Call\r\nc=IN IP4 1.2.3.4\r\nt=0 0\r\nm=audio 1234 RTP/AVP 0\r\na=rtpmap:0 GSM/8000\r\n"
20250425123633162 DAPP <0002> call.c:187 call(5009) leg(0x0x55aa76608fc0) replaced old SDP=""
20250425123633162 DSIP <0000> sip.c:110 leg(0x55aa76608fc0) is now connected(c2e0b2ab-9c74-123e-29b0-ea9ab35fbf54).
20250425123633162 DMNCC <0001> mncc.c:212 SEND rtp_connect: IP=(1.2.3.4) PORT=(1234)
20250425123633162 DMNCC <0001> mncc.c:165 tx MNCC MNCC_RTP_CONNECT with SDP="v=0\r\no=Osmocom 0 0 IN IP4 1.1.1.1\r\ns=GSM Call\r\nc=IN IP4 1.2.3.4\r\nt=0 0\r\nm=audio 1234 RTP/AVP 0\r\na=rtpmap:0 GSM/8000\r\n"
20250425123633162 DMNCC <0001> mncc.c:68 Starting Timer for MNCC_SETUP_COMPL_IND
20250425123633162 DMNCC <0001> mncc.c:137 tx MNCC MNCC_SETUP_RSP with SDP=""
20250425123633162 DSIP <0000> sip.c:361 SIP event[nua_i_state] status(200) phrase(OK) SDP((null)) 0x55aa76608fc0
20250425123633162 DSIP <0000> sip.c:461 Did not handle event[nua_i_state] status(200)
20250425123633162 DSIP <0000> sip.c:361 SIP event[nua_i_state] status(200) phrase(ACK sent) SDP((null)) 0x55aa76608fc0
20250425123633162 DSIP <0000> sip.c:461 Did not handle event[nua_i_state] status(200)
20250425123633162 DSIP <0000> sip.c:361 SIP event[nua_i_active] status(200) phrase(Call active) SDP((null)) 0x55aa76608fc0
20250425123633162 DSIP <0000> sip.c:461 Did not handle event[nua_i_active] status(200)
TC_mo_with_sdp(29)@57e03c4134ee: SDP update from "" to "v=0\r\no=Osmocom 0 0 IN IP4 1.1.1.1\r\ns=GSM Call\r\nc=IN IP4 1.2.3.4\r\nt=0 0\r\nm=audio 1234 RTP/AVP 0\r\na=rtpmap:0 GSM/8000\r\n"
20250425123633162 DMNCC <0001> mncc.c:1076 rx MNCC MNCC_SETUP_COMPL_IND with SDP=""
20250425123633162 DAPP <0002> call.c:180 call(5009) leg(0x0x55aa766097e0) no new SDP in ""
20250425123633162 DAPP <0002> call.c:182 call(5009) leg(0x0x55aa766097e0) keep stored SDP="v=0\r\no=Osmocom 0 0 IN IP4 1.1.1.1\r\ns=GSM Call\r\nc=IN IP4 5.6.7.8\r\nt=0 0\r\nm=audio 5678 RTP/AVP 0\r\na=rtpmap:0 GSM/8000\r\n"
20250425123633162 DMNCC <0001> mncc.c:699 leg(1849538617) is now connected.
20250425123633162 DMNCC <0001> mncc.c:80 Got response(MNCC_SETUP_COMPL_IND), stopping timer on leg(1849538617)
20250425123635166 DSIP <0000> sip.c:361 SIP event[nua_i_bye] status(200) phrase(Session Terminated) SDP((null)) 0x55aa76608fc0
20250425123635166 DSIP <0000> sip.c:428 leg(0x55aa76608fc0) got bye, releasing.
20250425123635166 DMNCC <0001> mncc.c:332 Releasing call in non-initial leg(1849538617) cause(unknown 0x0)
20250425123635166 DMNCC <0001> mncc.c:68 Starting Timer for MNCC_REL_IND
20250425123635166 DMNCC <0001> mncc.c:137 tx MNCC MNCC_DISC_REQ with SDP=""
20250425123635166 DMNCC <0001> mncc.c:1076 rx MNCC MNCC_REL_IND with SDP=""
20250425123635166 DMNCC <0001> mncc.c:658 Rcvd MNCC_REL_IND, Cause: unknown 0x0
20250425123635166 DMNCC <0001> mncc.c:80 Got response(MNCC_REL_IND), stopping timer on leg(1849538617)
20250425123635166 DMNCC <0001> mncc.c:670 leg(1849538617) was released.
20250425123635166 DAPP <0002> call.c:90 call(5009) released.
SIP_Test-MNCC(27)@57e03c4134ee: Deleted conn table entry 0TC_mo_with_sdp(29)1849538617
TC_mo_with_sdp(29)@57e03c4134ee: setverdict(pass): none -> pass
20250425123635167 DLGLOBAL <0004> telnet_interface.c:138 Closing telnet connection r=127.0.0.1:52426<->l=127.0.0.1:4256
20250425123635167 DMNCC <0001> mncc.c:1092 Failed to read 0/Bad file descriptor. Re-connecting.
SIP_Test-MNCC(27)@57e03c4134ee: Final verdict of PTC: none
SIP_Test_SIP_EMU(28)@57e03c4134ee: Final verdict of PTC: none
TC_mo_with_sdp(29)@57e03c4134ee: Final verdict of PTC: pass
MTC@57e03c4134ee: Setting final verdict of the test case.
MTC@57e03c4134ee: Local verdict of MTC: none
MTC@57e03c4134ee: Local verdict of PTC SIP_Test-MNCC(27): none (none -> none)
MTC@57e03c4134ee: Local verdict of PTC SIP_Test_SIP_EMU(28): none (none -> none)
MTC@57e03c4134ee: Local verdict of PTC TC_mo_with_sdp(29): pass (none -> pass)
MTC@57e03c4134ee: Test case TC_mo_with_sdp finished. Verdict: pass
MTC@57e03c4134ee: Starting external command `/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/ttcn3-tcpdump-stop.sh SIP_Tests.TC_mo_with_sdp pass'.
Fri Apr 25 12:36:35 UTC 2025
====== SIP_Tests.TC_mo_with_sdp pass ======

Saving talloc report from 127.0.0.1:4256 to SIP_Tests.TC_mo_with_sdp.talloc
20250425123635190 DLGLOBAL <0004> telnet_interface.c:192 Accept()ed new telnet connection r=127.0.0.1:49840<->l=127.0.0.1:4256
20250425123635191 DLGLOBAL <0004> telnet_interface.c:138 Closing telnet connection r=127.0.0.1:49840<->l=127.0.0.1:4256
Waiting for packet dumper to finish... 0 (prev_count=-1, count=15372)
Waiting for packet dumper to finish... 1 (prev_count=15372, count=21244)
MTC@57e03c4134ee: External command `/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/ttcn3-tcpdump-stop.sh SIP_Tests.TC_mo_with_sdp pass' was executed successfully (exit status: 0).
MC@57e03c4134ee: Test execution finished.
Execution of [EXECUTE] section finished.
emtc
MC@57e03c4134ee: Terminating MTC.
MC@57e03c4134ee: MTC terminated.
MC2> exit
MC@57e03c4134ee: Shutting down session.
MC@57e03c4134ee: Shutdown complete.

Comparing expected results '/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/sip/expected-results.xml' against results in 'junit-xml-4889.log'
--------------------
pass SIP_Tests.TC_mt_success_rel_gsm
pass SIP_Tests.TC_mt_success_rel_gsm_ipv6
pass SIP_Tests.TC_mt_success_rel_sip
pass SIP_Tests.TC_mo_success_rel_gsm
pass SIP_Tests.TC_mo_success_rel_gsm_ipv6
pass SIP_Tests.TC_mo_success_rel_sip
pass SIP_Tests.TC_mo_setup_disc_late_rtp
pass SIP_Tests.TC_mt_with_sdp
pass SIP_Tests.TC_mo_with_sdp

Summary:
  pass: 9


[testenv] Testsuite is done
[testenv] Stopping testsuite (1049845)
[testenv] Merging log files
[testenv] + ['podman', 'exec', '-e', 'CCACHE_DIR=/home/osmocom-build/ccache/testenv', '-e', 'TESTENV_CACHE_DIR=/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/_cache', '-e', 'TESTENV_SRC_DIR=/home/osmocom-build/jenkins/workspace', '-e', 'TERM=dumb', '-e', 'PATH=/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/_testenv/data/scripts:/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/_testenv/data/scripts/qemu:/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/sip:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin', '-e', 'HOME=/home/osmocom-build', '-t', '-w', '/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/logs/testsuite', 'testenv-sip-osmocom-latest-20250425-1235-648390b5-0', 'sh', '-c', '/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/log_merge.sh SIP_Tests --rm >/dev/null']
[testenv] Formatting log files
[testenv] + ['podman', 'exec', '-e', 'CCACHE_DIR=/home/osmocom-build/ccache/testenv', '-e', 'TESTENV_CACHE_DIR=/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/_cache', '-e', 'TESTENV_SRC_DIR=/home/osmocom-build/jenkins/workspace', '-e', 'TERM=dumb', '-e', 'PATH=/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/_testenv/data/scripts:/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/_testenv/data/scripts/qemu:/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/sip:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin', '-e', 'HOME=/home/osmocom-build', '-t', '-w', '/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/logs/testsuite', 'testenv-sip-osmocom-latest-20250425-1235-648390b5-0', 'sh', '-c', '/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/_testenv/data/scripts/log_format.sh']
[testenv] Stopping sip-connector (1049718)
[testenv] Showing testsuite/junit-xml-4889.log
[testenv] + ['podman', 'exec', '-e', 'CCACHE_DIR=/home/osmocom-build/ccache/testenv', '-e', 'TESTENV_CACHE_DIR=/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/_cache', '-e', 'TESTENV_SRC_DIR=/home/osmocom-build/jenkins/workspace', '-e', 'TERM=dumb', '-e', 'PATH=/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/_testenv/data/scripts:/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/_testenv/data/scripts/qemu:/home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/sip:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin', '-e', 'HOME=/home/osmocom-build', '-t', 'testenv-sip-osmocom-latest-20250425-1235-648390b5-0', 'sh', '-c', 'echo && source-highlight -f esc -s xml -i /home/osmocom-build/jenkins/workspace/ttcn3-sip-test-latest/logs/testsuite/junit-xml-4889.log && echo']

<?xml version="1.0"?>
<testsuite name='Titan' tests='9' failures='0' errors='0' skipped='0' inconc='0' time='82.00'>
  <testcase classname='SIP_Tests' name='TC_mt_success_rel_gsm' time='5.737857'/>
  <testcase classname='SIP_Tests' name='TC_mt_success_rel_gsm_ipv6' time='5.062279'/>
  <testcase classname='SIP_Tests' name='TC_mt_success_rel_sip' time='5.066826'/>
  <testcase classname='SIP_Tests' name='TC_mo_success_rel_gsm' time='5.041476'/>
  <testcase classname='SIP_Tests' name='TC_mo_success_rel_gsm_ipv6' time='5.033222'/>
  <testcase classname='SIP_Tests' name='TC_mo_success_rel_sip' time='5.021564'/>
  <testcase classname='SIP_Tests' name='TC_mo_setup_disc_late_rtp' time='13.027455'/>
  <testcase classname='SIP_Tests' name='TC_mt_with_sdp' time='5.038398'/>
  <testcase classname='SIP_Tests' name='TC_mo_with_sdp' time='5.026462'/>
</testsuite>

[testenv] Stopping podman container
[testenv] + ['podman', 'kill', 'testenv-sip-osmocom-latest-20250425-1235-648390b5-0']
testenv-sip-osmocom-latest-20250425-1235-648390b5-0
[testenv] feed_watchdog_loop: podman container has stopped
[testenv] Logs saved to: https://jenkins.osmocom.org/jenkins/job/ttcn3-sip-test-latest/2395/artifact/logs/ 
+ rm -rf _cache .linux
Recording test results
[Checks API] No suitable checks publisher found.
Archiving artifacts
Finished: SUCCESS