mirror of
https://github.com/dashpay/dash.git
synced 2024-12-23 19:12:47 +01:00
3009b86150
0dbafcee46
Merge bitcoin/bitcoin#27289: Refactor: Remove unused FlatFilePos::SetNull (fanquake)dbe2e04d62
Merge bitcoin/bitcoin#27212: test: Make the unlikely race in p2p_invalid_messages impossible (fanquake)6f6b718f78
Merge bitcoin/bitcoin#27236: util: fix argsman dupe key error (fanquake)74c6e38530
Merge bitcoin/bitcoin#27205: doc: Show how less noisy clang-tidy output can be achieved (fanquake)9e552f0293
Merge bitcoin/bitcoin#27232: Use string interpolation for default value of -listen (fanquake)2a39b93233
Merge bitcoin/bitcoin#27226: test: Use self.wait_until over wait_until_helper (fanquake)be2e16f33a
Merge bitcoin/bitcoin#27192: util: add missing include and fix function signature (fanquake)176a4a60d2
Merge bitcoin/bitcoin#27173: valgrind: remove libsecp256k1 suppression (fanquake)d2fc8be331
Merge bitcoin/bitcoin#27154: doc: mention sanitizer suppressions in developer docs (glozow)f5b4cc7e32
Merge bitcoin/bitcoin#16195: util: Use void* throughout support/lockedpool.h (Andrew Chow)c66c0fdbf8
Merge bitcoin/bitcoin#27137: test: Raise PRNG seed log to INFO (fanquake)bba215031b
Merge bitcoin/bitcoin#25950: test: fix test abort for high timeout values (and `--timeout-factor 0`) (fanquake)6751add2ea
Merge bitcoin/bitcoin#27107: doc: remove mention of "proper signing key" (merge-script)34c895a542
Merge bitcoin/bitcoin#26997: psbt: s/transcation/transaction/ (fanquake)befdbeddf9
Merge bitcoin/bitcoin#27097: descriptors: fix docstring (param [in] vs [out]) (fanquake)c98dd824b6
Merge bitcoin/bitcoin#27080: Wallet: Zero out wallet master key upon locking so it doesn't persist in memory (Andrew Chow) Pull request description: ## Issue being fixed or feature implemented Batch of trivial backports ## What was done? See commits ## How Has This Been Tested? built locally; large combined merge passed tests locally ## Breaking Changes Should be none ## Checklist: - [ ] I have performed a self-review of my own code - [ ] I have commented my code, particularly in hard-to-understand areas - [ ] I have added or updated relevant unit/integration/functional/e2e tests - [ ] I have made corresponding changes to the documentation - [x] I have assigned this pull request to a milestone _(for repository code-owners and collaborators only)_ ACKs for top commit: knst: utACK0dbafcee46
UdjinM6: utACK0dbafcee46
Tree-SHA512: e93a1136e848aa6c6f3d9fb0567b3e284975d35e82bbc1d9a8cd908067df4bf1257c939882abcaca6820360a4982b991f505a1165d95e1a8b52c9b181b7026b7
163 lines
3.6 KiB
Plaintext
163 lines
3.6 KiB
Plaintext
# This valgrind suppressions file includes known Valgrind warnings in our
|
|
# dependencies that cannot be fixed in-tree.
|
|
#
|
|
# Example use:
|
|
# $ valgrind --suppressions=contrib/valgrind.supp src/test/test_dash
|
|
# $ valgrind --suppressions=contrib/valgrind.supp --leak-check=full \
|
|
# --show-leak-kinds=all src/test/test_dash
|
|
#
|
|
# To create suppressions for found issues, use the --gen-suppressions=all option:
|
|
# $ valgrind --suppressions=contrib/valgrind.supp --leak-check=full \
|
|
# --show-leak-kinds=all --gen-suppressions=all --show-reachable=yes \
|
|
# --error-limit=no src/test/test_dash
|
|
#
|
|
# Note that suppressions may depend on OS and/or library versions.
|
|
# Tested on:
|
|
# * aarch64 (Ubuntu 20.04 system libs, without gui)
|
|
# * x86_64 (Ubuntu 18.04 system libs, without gui)
|
|
{
|
|
Suppress libstdc++ warning - https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65434
|
|
Memcheck:Leak
|
|
match-leak-kinds: reachable
|
|
fun:malloc
|
|
obj:*/libstdc++.*
|
|
fun:call_init.part.0
|
|
fun:call_init
|
|
fun:_dl_init
|
|
obj:*/ld-*.so
|
|
}
|
|
{
|
|
Suppress libdb warning - https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=662917
|
|
Memcheck:Cond
|
|
obj:*/libdb_cxx-*.so
|
|
fun:__log_put
|
|
}
|
|
{
|
|
Suppress libdb warning
|
|
Memcheck:Param
|
|
pwrite64(buf)
|
|
fun:pwrite
|
|
fun:__os_io
|
|
}
|
|
{
|
|
Suppress libdb warning
|
|
Memcheck:Cond
|
|
fun:__log_putr.isra.1
|
|
}
|
|
{
|
|
Suppress libdb warning
|
|
Memcheck:Param
|
|
pwrite64(buf)
|
|
...
|
|
obj:*/libdb_cxx-*.so
|
|
}
|
|
{
|
|
Suppress uninitialized bytes warning in compat code
|
|
Memcheck:Param
|
|
ioctl(TCSET{S,SW,SF})
|
|
fun:tcsetattr
|
|
}
|
|
{
|
|
Suppress libdb warning
|
|
Memcheck:Leak
|
|
fun:malloc
|
|
...
|
|
obj:*/libdb_cxx-*.so
|
|
}
|
|
{
|
|
Suppress leaks on init
|
|
Memcheck:Leak
|
|
...
|
|
fun:_Z11AppInitMainR11NodeContext
|
|
}
|
|
{
|
|
Suppress leaks on shutdown
|
|
Memcheck:Leak
|
|
...
|
|
fun:_Z8ShutdownR11NodeContext
|
|
}
|
|
{
|
|
Ignore GUI warning
|
|
Memcheck:Leak
|
|
...
|
|
obj:/usr/lib64/libgdk-3.so.0.2404.7
|
|
}
|
|
{
|
|
Suppress leveldb warning (leveldb::InitModule()) - https://github.com/google/leveldb/issues/113
|
|
Memcheck:Leak
|
|
match-leak-kinds: reachable
|
|
fun:_Znwm
|
|
fun:_ZN7leveldbL10InitModuleEv
|
|
}
|
|
{
|
|
Suppress leveldb warning (leveldb::Env::Default()) - https://github.com/google/leveldb/issues/113
|
|
Memcheck:Leak
|
|
match-leak-kinds: reachable
|
|
fun:_Znwm
|
|
...
|
|
fun:_ZN7leveldbL14InitDefaultEnvEv
|
|
}
|
|
{
|
|
Suppress leveldb leak
|
|
Memcheck:Leak
|
|
match-leak-kinds: reachable
|
|
fun:_Znwm
|
|
...
|
|
fun:_ZN7leveldb6DBImpl14BackgroundCallEv
|
|
}
|
|
{
|
|
Suppress leveldb leak
|
|
Memcheck:Leak
|
|
fun:_Znwm
|
|
...
|
|
fun:GetCoin
|
|
}
|
|
{
|
|
Suppress wcsnrtombs glibc SSE4 warning (could be related: https://stroika.atlassian.net/browse/STK-626)
|
|
Memcheck:Addr16
|
|
fun:__wcsnlen_sse4_1
|
|
fun:wcsnrtombs
|
|
}
|
|
{
|
|
Suppress boost warning
|
|
Memcheck:Leak
|
|
fun:_Znwm
|
|
...
|
|
fun:_ZN5boost9unit_test9framework5state17execute_test_treeEmjPKNS2_23random_generator_helperE
|
|
fun:_ZN5boost9unit_test9framework3runEmb
|
|
fun:_ZN5boost9unit_test14unit_test_mainEPFbvEiPPc
|
|
fun:main
|
|
}
|
|
{
|
|
Suppress boost still reachable memory warning
|
|
Memcheck:Leak
|
|
match-leak-kinds: reachable
|
|
fun:_Znwm
|
|
...
|
|
fun:_M_construct_aux<char*>
|
|
fun:_M_construct<char*>
|
|
fun:basic_string
|
|
fun:path
|
|
}
|
|
{
|
|
Suppress LogInstance still reachable memory warning
|
|
Memcheck:Leak
|
|
match-leak-kinds: reachable
|
|
fun:_Znwm
|
|
fun:_Z11LogInstancev
|
|
}
|
|
{
|
|
Suppress BCLog::Logger::StartLogging() still reachable memory warning
|
|
Memcheck:Leak
|
|
match-leak-kinds: reachable
|
|
fun:malloc
|
|
...
|
|
fun:_ZN5BCLog6Logger12StartLoggingEv
|
|
}
|
|
{
|
|
Suppress https://bugs.kde.org/show_bug.cgi?id=472219 - fixed in Valgrind 3.22.
|
|
Memcheck:Param
|
|
ppoll(ufds.events)
|
|
obj:/lib/ld-musl-aarch64.so.1
|
|
}
|