You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
792 B
27 lines
792 B
#!/bin/bash |
|
DATADIR="@abs_top_builddir@/.bitcoin" |
|
rm -rf "$DATADIR" |
|
mkdir -p "$DATADIR"/regtest |
|
touch "$DATADIR/regtest/debug.log" |
|
tail -q -n 1 -F "$DATADIR/regtest/debug.log" | grep -m 1 -q "Done loading" & |
|
WAITER=$! |
|
"@abs_top_builddir@/src/bitcoind@EXEEXT@" -connect=0.0.0.0 -datadir="$DATADIR" -rpcuser=user -rpcpassword=pass -listen -keypool=3 -debug -logtimestamps -port=18444 -regtest & |
|
BITCOIND=$! |
|
|
|
#Install a watchdog. |
|
(sleep 10 && kill -0 $WAITER 2>/dev/null && kill -9 $BITCOIND $$)& |
|
wait $WAITER |
|
|
|
if [ -n "$TIMEOUT" ]; then |
|
timeout "$TIMEOUT"s "$@" |
|
RETURN=$? |
|
else |
|
"$@" |
|
RETURN=$? |
|
fi |
|
|
|
(sleep 15 && kill -0 $BITCOIND 2>/dev/null && kill -9 $BITCOIND $$)& |
|
kill $BITCOIND && wait $BITCOIND |
|
|
|
# timeout returns 124 on timeout, otherwise the return value of the child |
|
exit $RETURN
|
|
|