From f2b477bffac032b40c8cf6e582a176f7a4ca95b2 Mon Sep 17 00:00:00 2001 From: Pau Espin Pedrol Date: Thu, 13 Jun 2019 17:16:44 +0200 Subject: [PATCH] bscnat: Add missing setverdict(pass) at the end Without this line, tests like TC_ctrl_location end up with verdict "none". Change-Id: I139a2ef63685b0f646fd9069031f92cf20eeca1e --- bsc-nat/BSCNAT_Tests.ttcn | 1 + 1 file changed, 1 insertion(+) diff --git a/bsc-nat/BSCNAT_Tests.ttcn b/bsc-nat/BSCNAT_Tests.ttcn index e97eb8366..41d58d760 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); }