Start BSSGP_CT and NS_CT as alive-type component in all testsuites

This was already done in PCU_Tests and Gbproxy_Tests, let's to it
everywhere.

Change-Id: I6e3b08710b4502e2b9805f7c9f7bd89f34e4085c
diff --git a/fr/FR_Tests.ttcn b/fr/FR_Tests.ttcn
index 1e662fe..b7a56c3 100644
--- a/fr/FR_Tests.ttcn
+++ b/fr/FR_Tests.ttcn
@@ -89,8 +89,8 @@
 /* initialize one Gb interface */
 private function f_init_gb(inout GbInstance gb, charstring id, integer offset) runs on test_CT {
 	var charstring id_idx := id & int2str(offset);
-	gb.vc_NS := NS_CT.create(id_idx & "-NSemu");
-	gb.vc_BSSGP := BSSGP_CT.create(id_idx & "-BSSGPemu");
+	gb.vc_NS := NS_CT.create(id_idx & "-NSemu") alive;
+	gb.vc_BSSGP := BSSGP_CT.create(id_idx & "-BSSGPemu") alive;
 	connect(gb.vc_BSSGP:BSCP, gb.vc_NS:NS_SP);
 	gb.vc_NS.start(NSStart(mp_nsconfig[offset], id_idx));
 	connect(self:BSSGP_PROC[offset], gb.vc_BSSGP:PROC);