Enable -v for valgrind so we can see counts for each error.

This commit is contained in:
Taylor Hornby 2016-05-18 18:49:59 -06:00
parent 0af5e31282
commit fc8c101acf
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ function zcashd_valgrind_start {
rm -rf "$DATADIR"
mkdir -p "$DATADIR"
rm -f valgrind.out
valgrind --leak-check=yes --error-limit=no --log-file="valgrind.out" ./src/zcashd -regtest -datadir="$DATADIR" -rpcuser=user -rpcpassword=password -rpcport=5983 &
valgrind --leak-check=yes -v --error-limit=no --log-file="valgrind.out" ./src/zcashd -regtest -datadir="$DATADIR" -rpcuser=user -rpcpassword=password -rpcport=5983 &
ZCASHD_PID=$!
}