aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNeels Hofmeyr <nhofmeyr@sysmocom.de>2021-09-19 13:25:07 +0200
committerNeels Hofmeyr <nhofmeyr@sysmocom.de>2021-09-23 18:00:19 +0200
commit6067cad2bb1b7f9bf87a858640e7a42d658a3a3e (patch)
treeb8d9bf8f14beec05d0b8ddf0cd2bae25cccea80c
parent25fdb45b5ab6b2d4d549aa4995e3c71402eee252 (diff)
bsc: TC_stat_num_bts_connected: also validate new bts.N.num_trx.*neels/two-trx
-rw-r--r--bsc/BSC_Tests.ttcn6
1 files changed, 6 insertions, 0 deletions
diff --git a/bsc/BSC_Tests.ttcn b/bsc/BSC_Tests.ttcn
index ef1e3cab..d840c2eb 100644
--- a/bsc/BSC_Tests.ttcn
+++ b/bsc/BSC_Tests.ttcn
@@ -2880,6 +2880,12 @@ private function f_tc_stat_num_bts_connected_msc_connhdlr(integer expect_num_bts
expect[lengthof(expect)] := {
name := "TTCN3.bts." & int2str(i) & ".rsl_connected", mtype := "g",
min := rsl_connected, max := rsl_connected };
+ expect[lengthof(expect)] := {
+ name := "TTCN3.bts." & int2str(i) & ".num_trx.rsl_connected", mtype := "g",
+ min := rsl_connected, max := rsl_connected };
+ expect[lengthof(expect)] := {
+ name := "TTCN3.bts." & int2str(i) & ".num_trx.total", mtype := "g",
+ min := BTS_NUM_TRX[i], max := BTS_NUM_TRX[i] };
}
f_statsd_expect(expect);
}