osmo-ttcn3-hacks/hlr
Vadim Yanitskiy 06e53c5999 HLR_Tests.ttcn: suspend some compilation warnings
In the most use cases of f_SS_expect() we are not interested in
GSUP_PDU returned by this function. Calling it without storing
the returned value causes TTCN-3 compiler to complain:

  warning: The value returned by function
           `@HLR_Tests.f_SS_expect' is not used

Let's make use of previously unused variable 'res', and save
the returned GSUP_PDU to make the TTCN-3 compiler happy.

Change-Id: Ifda42aa18af8076013b436364513296b2b008731
2019-03-29 16:44:11 +00:00
..
HLR_EUSE.ttcn hlr: Fix DTE by requesting the correct type 2018-11-12 16:17:42 +00:00
HLR_Tests.cfg remove *.default from [EXECUTE] in *.default files 2018-03-13 14:30:55 +01:00
HLR_Tests.default detect VTY TELNET port connection failures (attempt #2) 2018-07-27 17:20:38 +02:00
HLR_Tests.ttcn HLR_Tests.ttcn: suspend some compilation warnings 2019-03-29 16:44:11 +00:00
README.md Add README.md file for several suites 2018-06-14 18:55:36 +02:00
expected-results.xml update expected results 2019-01-23 12:44:42 +01:00
gen_links.sh Add Misc_Helpers.ttcn to centralize TTCN3 shutdown handling 2018-10-24 15:10:13 +02:00
regen_makefile.sh hlr: Link required libraries for USSD / SS messages 2018-08-07 23:32:32 +02:00

README.md

HLR_Tests.ttcn

  • external interfaces
    • GSUP (emulates VLR/SGSN side)
    • VTY

{% dot hlr_tests.svg digraph G { rankdir=LR; HLR [label="IUT\nosmo-hlr",shape="box"]; ATS [label="ATS\nHLR_Tests.ttcn"];

ATS -> HLR [label="GSUP"]; ATS -> HLR [label="VTY"]; } %}