pespin submitted this change.
hnbgw: Create all components alive
This makes it easier to figure out errors due to getting rid of DTEs
changing the result output of the test.
Change-Id: If7ef1897adf3ef819314aa094ba78c526d77770f
---
M hnbgw/HNBGW_Tests.ttcn
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/hnbgw/HNBGW_Tests.ttcn b/hnbgw/HNBGW_Tests.ttcn
index 1665431..589c699 100644
--- a/hnbgw/HNBGW_Tests.ttcn
+++ b/hnbgw/HNBGW_Tests.ttcn
@@ -312,7 +312,7 @@
multi_conn_mode := false
}
- vc_MGCP := MGCP_Emulation_CT.create(id);
+ vc_MGCP := MGCP_Emulation_CT.create(id) alive;
map(vc_MGCP:MGCP, system:MGCP_CODEC_PT);
vc_MGCP.start(MGCP_Emulation.main(ops, pars, id));
}
@@ -410,10 +410,10 @@
iuh_pars.remote_sctp_port := mp_hnbgw_iuh_port;
iuh_pars.local_ip := mp_hnodeb_ip;
iuh_pars.local_sctp_port := mp_hnodeb_port + hnb_idx;
- vc_Iuh[hnb_idx] := Iuh_Emulation_CT.create(id);
+ vc_Iuh[hnb_idx] := Iuh_Emulation_CT.create(id) alive;
connect(self:HNBAP[hnb_idx], vc_Iuh[hnb_idx]:HNBAP);
- vc_RUA[hnb_idx] := RUA_Emulation_CT.create(id & "-RUA");
+ vc_RUA[hnb_idx] := RUA_Emulation_CT.create(id & "-RUA") alive;
connect(vc_RUA[hnb_idx]:RUA, vc_Iuh[hnb_idx]:RUA);
/* Start Iuh side components */
@@ -627,7 +627,7 @@
var ConnHdlr vc_conn;
var charstring id := testcasename() & int2str(pars.hnb_idx);
- vc_conn := ConnHdlr.create(id);
+ vc_conn := ConnHdlr.create(id) alive;
/* Iuh RUA part */
connect(vc_conn:RUA, vc_RUA[pars.hnb_idx]:CLIENT);
To view, visit change 39487. To unsubscribe, or for help writing mail filters, visit settings.