aboutsummaryrefslogtreecommitdiffstats
path: root/bsc
diff options
context:
space:
mode:
authorMax <msuraev@sysmocom.de>2018-11-16 17:57:39 +0100
committerMax <msuraev@sysmocom.de>2018-11-19 09:27:17 +0000
commit9925390dd732c5e6f1c59c1b9a142d08225e8d2f (patch)
tree56c5ad8d28f573a21bc61107841862370a35b4f4 /bsc
parent2253c0bd1d4a2f6046b1366d69c819ff3f925616 (diff)
BSC: log BTS number on failure
It's useful to see which BTS exactly has failed the test in configuration with multiple BTS on single BSC. Change-Id: Ib813635862c04d51a30e7bbcca4ec05ce664f7e9
Diffstat (limited to 'bsc')
-rw-r--r--bsc/BSC_Tests.ttcn2
1 files changed, 1 insertions, 1 deletions
diff --git a/bsc/BSC_Tests.ttcn b/bsc/BSC_Tests.ttcn
index 13535ce3..29961e59 100644
--- a/bsc/BSC_Tests.ttcn
+++ b/bsc/BSC_Tests.ttcn
@@ -243,7 +243,7 @@ function f_wait_oml(integer bts_nr, charstring status, float secs_max) runs on t
}
f_sleep(0.1);
if (not T.running) {
- setverdict(fail, "Timeout waiting for oml-connection-state ", status);
+ setverdict(fail, "Timeout waiting for BTS" & int2str(bts_nr) & " oml-connection-state ", status);
mtc.stop;
}
}