From db4e84cf2f8de0909c3483c8cadb25ac72fb3367 Mon Sep 17 00:00:00 2001 From: Klement Sekera Date: Fri, 11 Aug 2017 10:06:15 +0200 Subject: make test: properly handle ctrl-c Change-Id: Iab88886ebc1582626813777ea45ce97fc8e36443 Signed-off-by: Klement Sekera --- test/scripts/run_in_venv_with_cleanup.sh | 38 ++++++++++++++++++++++++++++++++ test/scripts/run_with_cleanup.sh | 25 --------------------- test/scripts/setsid_wrapper.sh | 12 ++++++++++ 3 files changed, 50 insertions(+), 25 deletions(-) create mode 100755 test/scripts/run_in_venv_with_cleanup.sh delete mode 100755 test/scripts/run_with_cleanup.sh create mode 100755 test/scripts/setsid_wrapper.sh (limited to 'test/scripts') diff --git a/test/scripts/run_in_venv_with_cleanup.sh b/test/scripts/run_in_venv_with_cleanup.sh new file mode 100755 index 00000000000..541f584ac45 --- /dev/null +++ b/test/scripts/run_in_venv_with_cleanup.sh @@ -0,0 +1,38 @@ +#!/bin/bash + +rv=0 + +atexit() { + group_id=`ps -p $$ -o pgid=` + my_id=$$ + ids=`pgrep -g $group_id -d ' ' | sed "s/\b$my_id\b//g"` + echo "Killing possible remaining process IDs: $ids" + for id in $ids + do + if ps -p $id > /dev/null + then + kill -9 $id + fi + done + exit $rv +} + +trap "atexit;" SIGINT SIGTERM + +FORCE_FOREGROUND=$1 +shift + +source $1 +shift + +if [[ "${FORCE_FOREGROUND}" == "1" ]] +then + $* +else + $* & + wait +fi + +rv=$? +atexit +exit $rv diff --git a/test/scripts/run_with_cleanup.sh b/test/scripts/run_with_cleanup.sh deleted file mode 100755 index dcaa58b4498..00000000000 --- a/test/scripts/run_with_cleanup.sh +++ /dev/null @@ -1,25 +0,0 @@ -#!/bin/bash - -rv=0 - -atexit() { - group_id=`ps -p $$ -o pgid=` - my_id=$$ - ids=`pgrep -g $group_id -d ' ' | sed "s/\b$my_id\b//g"` - echo "Killing possible remaining process IDs: $ids" - for id in $ids - do - if ps -p $id > /dev/null - then - kill -9 $id - fi - done - exit $rv -} - -trap "atexit" SIGINT SIGTERM - -$* -rv=$? -atexit -exit $rv diff --git a/test/scripts/setsid_wrapper.sh b/test/scripts/setsid_wrapper.sh new file mode 100755 index 00000000000..e18b6ad5947 --- /dev/null +++ b/test/scripts/setsid_wrapper.sh @@ -0,0 +1,12 @@ +#!/bin/bash + +if [[ "$1" == "1" ]] +then + setsid scripts/run_in_venv_with_cleanup.sh $* + pid=$! +else + setsid scripts/run_in_venv_with_cleanup.sh $* & + pid=$! + trap "echo setsid_wrapper.sh: got signal, killing child pid ${pid}; kill ${pid}; sleep .1;" SIGINT SIGTERM + wait +fi -- cgit 1.2.3-korg