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/MSC_ConnectionHandler.ttcn b/bsc/MSC_ConnectionHandler.ttcn
index 62c2a71..7c5a6d7 100644
--- a/bsc/MSC_ConnectionHandler.ttcn
+++ b/bsc/MSC_ConnectionHandler.ttcn
@@ -682,7 +682,7 @@
 		setverdict(fail, "Received non-matching ASSIGNMENT FAIL");
 		}
 	[] T.timeout {
-		setverdict(inconc, "Timeout waiting for ASSIGNMENT COMPLETE");
+		setverdict(fail, "Timeout waiting for ASSIGNMENT COMPLETE");
 		}
 	}
 	log("g_media ", g_media);