aboutsummaryrefslogtreecommitdiff
path: root/qa/rpc-tests/send.sh
blob: fdfb1867bc6ce2813d55e1a2bc70e2ddb5b99ddf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/bash
TIMEOUT=10
SIGNAL=HUP
if [ $# -eq 0 ]; then
  echo -e "Usage:\t$0 <cmd>"
  echo -e "\tRuns <cmd> and wait ${TIMEOUT} seconds or until SIG${SIGNAL} is received."
  echo -e "\tReturns: 0 if SIG${SIGNAL} is received, 1 otherwise."
  exit 0
fi
trap '[[ ${PID} ]] && kill ${PID}' ${SIGNAL}
"$@"
sleep ${TIMEOUT} & PID=$!
wait ${PID} && exit 1
exit 0