Call f_shutdown after setting the verdict in TC_paging_*

Since f_shutdown now ends the testcase by calling mtc.stop we need to
set a verdict first.

Change-Id: Ia9dfcb1dd90e0f6fe61cf88a8de4c10a0cad4009
diff --git a/bts/BTS_Tests.ttcn b/bts/BTS_Tests.ttcn
index 0583171..f66a43f 100644
--- a/bts/BTS_Tests.ttcn
+++ b/bts/BTS_Tests.ttcn
@@ -1668,8 +1668,6 @@
 	[] as_rsl_res_ind();
 	}
 
-	f_shutdown();
-
 	log("num_paging_sent=", st.num_paging_sent, " rcvd_msgs=", st.num_paging_rcv_msgs,
 	    " rcvd_ids=", st.num_paging_rcv_ids);
 	return st;
@@ -1695,6 +1693,7 @@
 	} else {
 		setverdict(pass);
 	}
+	f_shutdown();
 }
 
 /* Create ~ 80% paging load (TMSI only) sustained for about 20s, verifying that
@@ -1717,6 +1716,7 @@
 	} else {
 		setverdict(pass);
 	}
+	f_shutdown();
 }
 
 /* Create ~ 200% paging load (IMSI only) sustained for about 20s, verifying that
@@ -1741,6 +1741,7 @@
 	} else {
 		setverdict(pass);
 	}
+	f_shutdown();
 }
 
 /* Create ~ 200% paging load (TMSI only) sustained for about 20s, verifying that
@@ -1765,6 +1766,7 @@
 	} else {
 		setverdict(pass);
 	}
+	f_shutdown();
 }