make test: fix broken passing of return value
Change-Id: I2cb83caaf55ca9a29c06d71c6d20f8273ec062b3 Signed-off-by: Klement Sekera <ksekera@cisco.com>
This commit is contained in:

committed by
Neale Ranns

parent
30fb4a2f43
commit
8712ada6c3
@ -3,10 +3,10 @@
|
||||
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
|
||||
wait ${pid}
|
||||
exit $?
|
||||
fi
|
||||
|
Reference in New Issue
Block a user