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/sgsn/SGSN_Tests.ttcn b/sgsn/SGSN_Tests.ttcn
index 3386f71..c29095f 100644
--- a/sgsn/SGSN_Tests.ttcn
+++ b/sgsn/SGSN_Tests.ttcn
@@ -257,8 +257,8 @@
 }
 
 private function f_init_gb(inout GbInstance gb, charstring id, integer offset) runs on test_CT {
-	gb.vc_NS := NS_CT.create(id & "-NS" & int2str(offset));
-	gb.vc_BSSGP := BSSGP_CT.create(id & "-BSSGP" & int2str(offset));
+	gb.vc_NS := NS_CT.create(id & "-NS" & int2str(offset)) alive;
+	gb.vc_BSSGP := BSSGP_CT.create(id & "-BSSGP" & int2str(offset)) alive;
 	/* connect lower end of BSSGP emulation with NS upper port */
 	connect(gb.vc_BSSGP:BSCP, gb.vc_NS:NS_SP);