Skip to content

Commit f16a0f7

Browse files
bitcoin -> Dash
Signed-off-by: Pasta <pasta@dashboost.org>
1 parent 4258321 commit f16a0f7

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

contrib/valgrind.supp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
# Valgrind suppressions file for Bitcoin.
1+
# Valgrind suppressions file for Dash.
22
#
33
# Includes known Valgrind warnings in our dependencies that cannot be fixed
44
# in-tree.
55
#
66
# Example use:
7-
# $ valgrind --suppressions=contrib/valgrind.supp src/test/test_bitcoin
7+
# $ valgrind --suppressions=contrib/valgrind.supp src/test/test_dash
88
# $ valgrind --suppressions=contrib/valgrind.supp --leak-check=full \
9-
# --show-leak-kinds=all src/test/test_bitcoin --log_level=test_suite
9+
# --show-leak-kinds=all src/test/test_dash --log_level=test_suite
1010
{
1111
Suppress libstdc++ warning - https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65434
1212
Memcheck:Leak

doc/developer-notes.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -172,15 +172,15 @@ are held, and adds warnings to the debug.log file if inconsistencies are detecte
172172

173173
Valgrind is a programming tool for memory debugging, memory leak detection, and
174174
profiling. The repo contains a Valgrind suppressions file
175-
([`valgrind.supp`](https://github.com/bitcoin/bitcoin/blob/master/contrib/valgrind.supp))
175+
([`valgrind.supp`](https://github.com/dashpay/dash/blob/master/contrib/valgrind.supp))
176176
which includes known Valgrind warnings in our dependencies that cannot be fixed
177177
in-tree. Example use:
178178

179179
```shell
180-
$ valgrind --suppressions=contrib/valgrind.supp src/test/test_bitcoin
180+
$ valgrind --suppressions=contrib/valgrind.supp src/test/test_dash
181181
$ valgrind --suppressions=contrib/valgrind.supp --leak-check=full \
182-
--show-leak-kinds=all src/test/test_bitcoin --log_level=test_suite
183-
$ valgrind -v --leak-check=full src/bitcoind -printtoconsole
182+
--show-leak-kinds=all src/test/test_dash --log_level=test_suite
183+
$ valgrind -v --leak-check=full src/dashd -printtoconsole
184184
```
185185

186186
**compiling for test coverage**
@@ -196,7 +196,7 @@ To enable LCOV report generation during test runs:
196196
make
197197
make cov
198198

199-
# A coverage report will now be accessible at `./test_bitcoin.coverage/index.html`.
199+
# A coverage report will now be accessible at `./test_dash.coverage/index.html`.
200200
```
201201

202202
Locking/mutex usage notes

0 commit comments

Comments
 (0)