# HG changeset patch
# User Edouard Tisserant <edouard.tisserant@gmail.com>
# Date 1689862886 -7200
# Node ID 5f0b02ab500cee15d0e64c11839343c5d07ca149
# Parent  a95b5ee1a0ea93bab86e4cfce379d94907528730
Tests: have to terminate language test with KILL, side effect of BEREMIZ_TEST_CYCLES

diff -r a95b5ee1a0ea -r 5f0b02ab500c tests/cli_tests/iec61131_lang_test.bash
--- a/tests/cli_tests/iec61131_lang_test.bash	Thu Jul 20 16:16:05 2023 +0200
+++ b/tests/cli_tests/iec61131_lang_test.bash	Thu Jul 20 16:21:26 2023 +0200
@@ -7,7 +7,7 @@
 while read -t 5 -u ${COPROC[0]} line; do 
     echo "$line"
     if [[ "$line" == *ALL\ TESTS\ OK* ]]; then
-        pkill INT -s $COPROC_PID 
+        pkill -9 -s $COPROC_PID 
         exit 0
     fi
 done