mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-23 03:55:44 +01:00
ssl-opt.sh: Kill server via KILL signal if TERM doesn't succeed
This commit is contained in:
parent
cadb5bbe3c
commit
d82d84664a
@ -447,10 +447,19 @@ run_test() {
|
||||
|
||||
# terminate the server (and the proxy)
|
||||
kill $SRV_PID
|
||||
wait $SRV_PID
|
||||
sleep 0.01
|
||||
if kill -0 $SRV_PID >/dev/null 2>&1; then
|
||||
kill -KILL $SRV_PID
|
||||
wait $SRV_PID
|
||||
fi
|
||||
|
||||
if [ -n "$PXY_CMD" ]; then
|
||||
kill $PXY_PID >/dev/null 2>&1
|
||||
wait $PXY_PID
|
||||
sleep 0.01
|
||||
if kill -0 $PXY_PID >/dev/null 2>&1; then
|
||||
kill -KILL $pXY_PID
|
||||
wait $PXY_PID
|
||||
fi
|
||||
fi
|
||||
|
||||
# retry only on timeouts
|
||||
|
Loading…
Reference in New Issue
Block a user