osmo-ttcn3-hacks/bsc-nat
Oliver Smith f8fe1329e2 regen_makefile.sh: set executable name explicitly
Set the executable name in each regen_makefile.sh explicitly with -e,
instead of having it set indirectly from the first .ttcn file. Make it
consistent by placing the name on top of each of these files.

Fix for warning:
ttcn3_makefilegen: warning: File `BSC_Tests.ttcn' was given more than once for the Makefile.

Related: OS#5252
Change-Id: I5ed03f8f3ed905483620dc7bae33b617bbb8507f
2021-10-13 11:12:22 +02:00
..
BSCNAT_Tests.cfg Rename IPA_Test->BSCNAT_Tests and get proper cfg files 2019-03-29 11:12:14 +00:00
BSCNAT_Tests.default bsc-nat: Introduce Osmux test 2019-05-27 20:05:25 +02:00
BSCNAT_Tests.ttcn CTRL: Introduce support to run osmocom CTRL server 2021-01-07 15:06:39 +01:00
BSC_MS_ConnectionHandler.ttcn bscnat: Introduce test TC_ctrl_location 2019-06-13 14:33:23 +00:00
BSC_MS_Simulation.ttcn library/IPA: use tr_ASP_IPA_EV instead of inline templates 2020-05-18 21:16:35 +07:00
MGCP_Adapter.ttcn cosmetic: Update copyright statement, license notice and SPDX 2019-05-27 10:00:06 +00:00
MSC_ConnectionHandler.ttcn bscnat: Refactor MSC side code to allow different actions per test 2019-06-13 14:33:23 +00:00
MSC_Simulation.ttcn bscnat: Refactor MSC side code to allow different actions per test 2019-06-13 14:33:23 +00:00
README.md Update README.md of several TTCN3 test suites 2019-11-15 18:49:09 +00:00
bscs.config bsc-nat: Add sample bsc-nat config for test 2019-03-29 11:12:14 +00:00
gen_links.sh library: Add template helpers for AoIP Transport Layer Address 2020-09-07 08:05:28 +00:00
osmo-bsc-nat.cfg bsc-nat: Add sample bsc-nat config for test 2019-03-29 11:12:14 +00:00
regen_makefile.sh regen_makefile.sh: set executable name explicitly 2021-10-13 11:12:22 +02:00

README.md

BSCNAT_Tests.ttcn

  • external interfaces
    • BSSAP/SCCP/IPA (SCCPLite) (emulates BSC-side and MSC-side)
    • MGCP/UDP (emulates MSC-side MSC+MGW)
    • MGCP/IPA (emulates BSC-side BSC+MGW)
    • RTP (emulates BSC-side MGW and MSC-side MGW)
    • Osmux (emulates BSC-side MGW)
    • VTY
    • CTRL

{% dot bscnat_tests.svg digraph G { rankdir=LR; BSCNAT [label="IUT\nosmo-bsc_nat",shape="box"]; ATS [label="ATS\nBSC_Tests.ttcn"];

ATS -> BSCNAT [label="SCCPLite BSC-side"]; BSCNAT -> ATS [label="SCCPLite MSC-side"]; BSCNAT -> ATS [label="MGCP/UDP MSC-side", dir="both"]; BSCNAT -> ATS [label="MGCP/IPA BSC-side"]; ATS -> BSCNAT [label="CTRL"]; ATS -> BSCNAT [label="VTY"]; ATS -> BSCNAT [label="RTP BSC-side", dir="both"]; ATS -> BSCNAT [label="RTP MSC-side", dir="both"]; ATS -> BSCNAT [label="Osmux BSC-side", dir="both"]; } %}