hnodeb: Make HNBGW_ConnHdlr component alive

The several components started by HNBGW_ConnHdlr are already marked as
"alive", but not HNBGW_ConnHdlr. As a result, during test tear down, if
eg. Iuh socket receives a message, it may try to send it to the
HNBGW_ConnHdlr component and will error because it was already killed.

Change-Id: Ibc2587db4563d016841d11de628057bffe36b581
This commit is contained in:
Pau Espin 2024-03-12 11:21:41 +01:00
parent 964533e20d
commit 36fc368dad
1 changed files with 1 additions and 1 deletions

View File

@ -149,7 +149,7 @@ function f_start_handler_create(TestHdlrParams pars)
runs on test_CT return HNBGW_ConnHdlr {
var charstring id := testcasename();
var HNBGW_ConnHdlr vc_conn;
vc_conn := HNBGW_ConnHdlr.create(id);
vc_conn := HNBGW_ConnHdlr.create(id) alive;
f_connect_handler(vc_conn, pars);
return vc_conn;
}