blob: 799b1568c63bf9f99896a6c7b3b63890c2d18a73 [file] [log] [blame]
Harald Welteac359802017-04-12 12:13:44 +02001#!/bin/sh
2
Harald Welte58e03e22017-04-12 13:54:25 +02003SRC_BASE_DIR=~/projects/git/osmo-ttcn3-hacks
Harald Welteac359802017-04-12 12:13:44 +02004
Harald Welte58e03e22017-04-12 13:54:25 +02005ln -sf $SRC_BASE_DIR/COMMON/src/General_Types.ttcn .
Harald Welteac359802017-04-12 12:13:44 +02006
7#M3UA protocol module
Harald Weltec87abfc2018-03-18 10:58:00 +01008ln -sf $SRC_BASE_DIR/deps/titan.ProtocolModules.M3UA/src/M3UA_Types.ttcn .
Harald Welteac359802017-04-12 12:13:44 +02009#M3UA Emulator
Harald Weltec87abfc2018-03-18 10:58:00 +010010ln -sf $SRC_BASE_DIR/src/titan.ProtocolEmulations.M3UA/src/M3UA_Emulation.ttcn .
Harald Welteac359802017-04-12 12:13:44 +020011
12
13#MTP3 test port (partly)
Harald Weltec87abfc2018-03-18 10:58:00 +010014ln -sf $SRC_BASE_DIR/deps/titan.TestPorts.MTP3asp/src/MTP3asp_Types.ttcn .
15ln -sf $SRC_BASE_DIR/deps/titan.TestPorts.MTP3asp/src/MTP3asp_PortType.ttcn .
Harald Welteac359802017-04-12 12:13:44 +020016
17#SCCP Emulator + protocol module
Harald Weltec87abfc2018-03-18 10:58:00 +010018ln -sf $SRC_BASE_DIR/deps/titan.ProtocolEmulations.SCCP/src/SCCPasp_Types.ttcn .
19ln -sf $SRC_BASE_DIR/deps/titan.ProtocolEmulations.SCCP/src/SCCP_Types.ttcn .
20ln -sf $SRC_BASE_DIR/deps/titan.ProtocolEmulations.SCCP/src/SCCP_Mapping.ttcnpp .
21ln -sf $SRC_BASE_DIR/deps/titan.ProtocolEmulations.SCCP/src/SCCP_Emulation.ttcn .
Harald Welteac359802017-04-12 12:13:44 +020022
23#SCTP test port
Harald Weltec87abfc2018-03-18 10:58:00 +010024ln -sf $SRC_BASE_DIR/deps/titan.TestPorts.SCTPasp/src/SCTPasp_Types.ttcn .
25ln -sf $SRC_BASE_DIR/deps/titan.TestPorts.SCTPasp/src/SCTPasp_PortType.ttcn .
26ln -sf $SRC_BASE_DIR/deps/titan.TestPorts.SCTPasp/src/SCTPasp_PT.hh .
27ln -sf $SRC_BASE_DIR/deps/titan.TestPorts.SCTPasp/src/SCTPasp_PT.cc .
Harald Welteac359802017-04-12 12:13:44 +020028
29
30#Test cases
Harald Welte58e03e22017-04-12 13:54:25 +020031ln -sf $SRC_BASE_DIR/SCCP_Test/SCCP_Testcases.ttcn .
32ln -sf $SRC_BASE_DIR/SCCP_Test/SCCP_Testcases.cfg .