aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2019-06-13 17:16:44 +0200
committerPau Espin Pedrol <pespin@sysmocom.de>2019-06-13 17:16:46 +0200
commitf2b477bffac032b40c8cf6e582a176f7a4ca95b2 (patch)
treeb8b03c6eeceb54388f52fbcd461e6fe569e6c8b6
parent298fa9172685fbee5f9a7a7bf0615853b17a5ea1 (diff)
bscnat: Add missing setverdict(pass) at the end
Without this line, tests like TC_ctrl_location end up with verdict "none". Change-Id: I139a2ef63685b0f646fd9069031f92cf20eeca1e
-rw-r--r--bsc-nat/BSCNAT_Tests.ttcn1
1 files changed, 1 insertions, 0 deletions
diff --git a/bsc-nat/BSCNAT_Tests.ttcn b/bsc-nat/BSCNAT_Tests.ttcn
index e97eb836..41d58d76 100644
--- a/bsc-nat/BSCNAT_Tests.ttcn
+++ b/bsc-nat/BSCNAT_Tests.ttcn
@@ -192,6 +192,7 @@ function f_wait_finish(timer T) runs on test_CT {
for (i := 0; i < NUM_MSC; i := i+1) {
msc[i].MSC.stop;
}
+ setverdict(pass);
}