From f57ff03acbe78cf0abe56a129d5e6b716a2bf1ca Mon Sep 17 00:00:00 2001 From: Alexander Couzens Date: Fri, 11 Sep 2020 14:27:57 +0200 Subject: PCU_Tests_NS: add missing bound of nrf Otherwise it will try to use setverdict() with an unbound PDU Change-Id: Ieafe9017126dd293aad09dad3c8a4180c9c29fa0 --- pcu/RAW_NS.ttcn | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcu/RAW_NS.ttcn b/pcu/RAW_NS.ttcn index 15a02260..ec484ba2 100644 --- a/pcu/RAW_NS.ttcn +++ b/pcu/RAW_NS.ttcn @@ -72,7 +72,7 @@ function f_ns_exp(template PDU_NS exp_rx, integer idx := 0) runs on RAW_NS_CT re log("f_ns_exp() expecting ", exp_rx); alt { [] NSCP[idx].receive(t_NS_RecvFrom(exp_rx)) -> value nrf { } - [] NSCP[idx].receive { + [] NSCP[idx].receive(t_NS_RecvFrom(?)) -> value nrf { setverdict(fail, "Received unexpected NS: ", nrf); mtc.stop; } -- cgit v1.2.3