From 5c7850ebe5aa5d73189dd2b9d8e060c72abb31b3 Mon Sep 17 00:00:00 2001 From: Moandor Date: Thu, 15 Oct 2020 23:01:31 +0800 Subject: [PATCH] [continuous-integration] kill ot-rcp and ot-cli in pty check (#5654) This adds kill commands to POSIX pty check, to make sure all processes are stopped before the check completes. --- script/check-posix-pty | 2 ++ 1 file changed, 2 insertions(+) diff --git a/script/check-posix-pty b/script/check-posix-pty index 1143ee864..5e3c26434 100755 --- a/script/check-posix-pty +++ b/script/check-posix-pty @@ -43,6 +43,8 @@ at_exit() sudo killall expect || true sudo killall ot-ctl || true sudo killall ot-daemon || true + sudo killall ot-cli || true + sudo killall ot-rcp || true sudo killall socat || true exit $EXIT_CODE