From 2d491e86a03efb052b9f81f7bf2844513e14e616 Mon Sep 17 00:00:00 2001 From: reinaortega <miguelangel.reinaortega@etsi.org> Date: Mon, 15 Jun 2020 12:08:48 +0200 Subject: [PATCH] Fix TC_CSE_DMR_DEL_001 to stop vc_ae2 if running Signed-off-by: reinaortega <miguelangel.reinaortega@etsi.org> --- OneM2M_PermutationFunctions.ttcn | 3 +++ 1 file changed, 3 insertions(+) diff --git a/OneM2M_PermutationFunctions.ttcn b/OneM2M_PermutationFunctions.ttcn index 6c9b2cf..43331c3 100644 --- a/OneM2M_PermutationFunctions.ttcn +++ b/OneM2M_PermutationFunctions.ttcn @@ -6479,6 +6479,9 @@ module OneM2M_PermutationFunctions { // Test Body if(p_resourceType == int23) { + if (vc_ae2.running) { + vc_ae2.stop; + } vc_ae2.start(f_cse_notifyProcedure_noNotificationHandler()); } -- GitLab