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
diff --git a/bsc/BSC_Tests.ttcn b/bsc/BSC_Tests.ttcn
index aff6336..ea90f06 100644
--- a/bsc/BSC_Tests.ttcn
+++ b/bsc/BSC_Tests.ttcn
@@ -1674,7 +1674,7 @@
 		setverdict(pass);
 		}
 	[] BSSAP.receive { setverdict(fail, "unexpected BSSAP"); }
-	[] T.timeout { setverdict(inconc); }
+	[] T.timeout { setverdict(fail, "Timeout waiting for RR STATUS"); }
 	}
 }
 testcase TC_err_84_unknown_msg() runs on test_CT {