From beda69722150da0223ac15d6dfa1c737c2b741f7 Mon Sep 17 00:00:00 2001 From: Vadim Yanitskiy Date: Mon, 21 Jun 2021 12:50:07 +0200 Subject: [PATCH] [VAMOS] BTS: call f_shutdown() in f_TC_vamos_exec_async() Sometimes, VAMOS related test cases fail due to a DTE: Dynamic test case error: Sending data on the connection of port CCHAN_PT to 1:RSL_CCHAN failed. (Broken pipe) Call f_shutdown() to ensure that all components are properly terminated, so there will be no race conditions like this. Change-Id: I690412a29b24571109415d32b09543de459076d1 Related: SYS#4895 --- bts/BTS_Tests_VAMOS.ttcn | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bts/BTS_Tests_VAMOS.ttcn b/bts/BTS_Tests_VAMOS.ttcn index 413892d0b..3498c61aa 100644 --- a/bts/BTS_Tests_VAMOS.ttcn +++ b/bts/BTS_Tests_VAMOS.ttcn @@ -182,6 +182,8 @@ runs on test_CT { vc_conn[ch].done; } } + + Misc_Helpers.f_shutdown(__BFILE__, __LINE__); } private function f_TC_vamos_chan_act(charstring id)