fixeria has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/38038?usp=email )
Change subject: s1gw: use the COMMON PFCP port ......................................................................
s1gw: use the COMMON PFCP port
Change-Id: Ib12fd5e8f6aea9a94ec99a2c20f56057f7ac8905 --- M s1gw/S1GW_Tests.ttcn 1 file changed, 2 insertions(+), 0 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-ttcn3-hacks refs/changes/38/38038/1
diff --git a/s1gw/S1GW_Tests.ttcn b/s1gw/S1GW_Tests.ttcn index 3c8dfb4..1d925be 100644 --- a/s1gw/S1GW_Tests.ttcn +++ b/s1gw/S1GW_Tests.ttcn @@ -50,6 +50,7 @@ timer g_Tguard; var S1AP_Server_CT vc_S1APSRV; var PFCP_Emulation_CT vc_PFCP; + port PFCPEM_PT PFCP; };
private altstep as_Tguard() runs on test_CT { @@ -92,6 +93,7 @@ };
vc_PFCP := PFCP_Emulation_CT.create("PFCP-" & testcasename()) alive; + connect(vc_PFCP:COMMON, self:PFCP); vc_PFCP.start(PFCP_Emulation.main(pfcp_cfg)); }