From f16a0f79aaf9e33f6e33f43f27f38ba4869a106f Mon Sep 17 00:00:00 2001 From: Pasta Date: Thu, 30 Jan 2020 07:37:50 -0600 Subject: [PATCH] bitcoin -> Dash Signed-off-by: Pasta --- contrib/valgrind.supp | 6 +++--- doc/developer-notes.md | 10 +++++----- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/contrib/valgrind.supp b/contrib/valgrind.supp index 0f6d993fd2..e236514a15 100644 --- a/contrib/valgrind.supp +++ b/contrib/valgrind.supp @@ -1,12 +1,12 @@ -# Valgrind suppressions file for Bitcoin. +# Valgrind suppressions file for Dash. # # Includes known Valgrind warnings in our dependencies that cannot be fixed # in-tree. # # Example use: -# $ valgrind --suppressions=contrib/valgrind.supp src/test/test_bitcoin +# $ valgrind --suppressions=contrib/valgrind.supp src/test/test_dash # $ valgrind --suppressions=contrib/valgrind.supp --leak-check=full \ -# --show-leak-kinds=all src/test/test_bitcoin --log_level=test_suite +# --show-leak-kinds=all src/test/test_dash --log_level=test_suite { Suppress libstdc++ warning - https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65434 Memcheck:Leak diff --git a/doc/developer-notes.md b/doc/developer-notes.md index 1fb59f494f..f176b10cf9 100644 --- a/doc/developer-notes.md +++ b/doc/developer-notes.md @@ -172,15 +172,15 @@ are held, and adds warnings to the debug.log file if inconsistencies are detecte Valgrind is a programming tool for memory debugging, memory leak detection, and profiling. The repo contains a Valgrind suppressions file -([`valgrind.supp`](https://github.com/bitcoin/bitcoin/blob/master/contrib/valgrind.supp)) +([`valgrind.supp`](https://github.com/dashpay/dash/blob/master/contrib/valgrind.supp)) which includes known Valgrind warnings in our dependencies that cannot be fixed in-tree. Example use: ```shell -$ valgrind --suppressions=contrib/valgrind.supp src/test/test_bitcoin +$ valgrind --suppressions=contrib/valgrind.supp src/test/test_dash $ valgrind --suppressions=contrib/valgrind.supp --leak-check=full \ - --show-leak-kinds=all src/test/test_bitcoin --log_level=test_suite -$ valgrind -v --leak-check=full src/bitcoind -printtoconsole + --show-leak-kinds=all src/test/test_dash --log_level=test_suite +$ valgrind -v --leak-check=full src/dashd -printtoconsole ``` **compiling for test coverage** @@ -196,7 +196,7 @@ To enable LCOV report generation during test runs: make make cov -# A coverage report will now be accessible at `./test_bitcoin.coverage/index.html`. +# A coverage report will now be accessible at `./test_dash.coverage/index.html`. ``` Locking/mutex usage notes