bscnat: Add missing setverdict(pass) at the end

Without this line, tests like TC_ctrl_location end up with verdict
"none".

Change-Id: I139a2ef63685b0f646fd9069031f92cf20eeca1e
This commit is contained in:
Pau Espin 2019-06-13 17:16:44 +02:00
parent 298fa91726
commit f2b477bffa
1 changed files with 1 additions and 0 deletions

View File

@ -192,6 +192,7 @@ function f_wait_finish(timer T) runs on test_CT {
for (i := 0; i < NUM_MSC; i := i+1) { for (i := 0; i < NUM_MSC; i := i+1) {
msc[i].MSC.stop; msc[i].MSC.stop;
} }
setverdict(pass);
} }