From e248e086ed24be64c99b3107f6ef8df07a6eea35 Mon Sep 17 00:00:00 2001 From: Andre Puschmann Date: Tue, 22 Jun 2021 15:44:07 +0200 Subject: [PATCH] ttcn3_dut: reset TFT matcher object when DUT is switched off --- srsue/src/test/ttcn3/src/ttcn3_ue.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/srsue/src/test/ttcn3/src/ttcn3_ue.cc b/srsue/src/test/ttcn3/src/ttcn3_ue.cc index 41325e6e9..568f9d98d 100644 --- a/srsue/src/test/ttcn3/src/ttcn3_ue.cc +++ b/srsue/src/test/ttcn3/src/ttcn3_ue.cc @@ -108,6 +108,7 @@ bool ttcn3_ue::switch_on() bool ttcn3_ue::switch_off() { + tft_matcher.reset(); // empty all TFTs return stack->switch_off(); }