stop bitcoind/bitcoin-cli processes that might have been left running

This commit is contained in:
Gavin Andresen 2014-05-02 12:37:20 -04:00 committed by langerhans
parent 06aad6560c
commit 95aa920899

View file

@ -11,6 +11,9 @@ if [ $# -lt 1 ]; then
echo "usage: $0 [bitcoin srcroot] build-test arguments..."
fi
killall -q bitcoin-cli
killall -q bitcoind
cd $1
shift