Pass -DPURIFY to OpenSSL so it doesn't clutter valgrind output.

This commit is contained in:
Taylor Hornby
2016-05-18 18:39:40 -06:00
parent d578de8e27
commit 0af5e31282
2 changed files with 2 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 --log-file="valgrind.out" ./src/zcashd -regtest -datadir="$DATADIR" -rpcuser=user -rpcpassword=password -rpcport=5983 &
valgrind --leak-check=yes --error-limit=no --log-file="valgrind.out" ./src/zcashd -regtest -datadir="$DATADIR" -rpcuser=user -rpcpassword=password -rpcport=5983 &
ZCASHD_PID=$!
}