aboutsummaryrefslogtreecommitdiffstats
path: root/bsc-nat
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2018-03-21 11:26:23 +0100
committerHarald Welte <laforge@gnumonks.org>2018-03-21 11:27:48 +0100
commit458fd37fb94cc34986719a0e5b52f552d9d34e27 (patch)
tree8025c13155b06fd37421f6f0ea9e32040a51d132 /bsc-nat
parent61c11e9234b3f9e087aba94380892ab66abc1191 (diff)
don't use setverdict(inconc) anymore. Use 'fail' at all times
The problem is that Junit-XML doesn't have a mapping for inconclusive results, and hence they show up as 'passed'. By introducing this change, we make sure all tests that don't pass show up as failed. Change-Id: Iddd13d0055c91f9bd304ce9833fba0485abf4c4e
Diffstat (limited to 'bsc-nat')
-rw-r--r--bsc-nat/MSC_ConnectionHandler.ttcn2
1 files changed, 1 insertions, 1 deletions
diff --git a/bsc-nat/MSC_ConnectionHandler.ttcn b/bsc-nat/MSC_ConnectionHandler.ttcn
index 0a06759c..102869cb 100644
--- a/bsc-nat/MSC_ConnectionHandler.ttcn
+++ b/bsc-nat/MSC_ConnectionHandler.ttcn
@@ -146,7 +146,7 @@ function main(integer connection_id, integer e1_timeslot) runs on MSC_ConnHdlr {
/* Guard timer has expired, close connection */
[] T.timeout {
BSSAP.send(BSSAP_Conn_Prim:MSC_CONN_PRIM_DISC_REQ);
- setverdict(inconc);
+ setverdict(fail, "Timeout of guard timer");
self.stop;
}