mirror of
https://github.com/dashpay/dash.git
synced 2024-12-25 20:12:57 +01:00
test: add suppression for state.Invalid() which is widely used by cppcheck is unhappy
This commit is contained in:
parent
27736114a1
commit
3f1cb8d13d
@ -45,6 +45,8 @@ IGNORED_WARNINGS=(
|
||||
"unusedFunction"
|
||||
"unknownMacro"
|
||||
"unusedStructMember"
|
||||
"note: Calling function 'Invalid' returns 0"
|
||||
"[note|warning]: Return value 'state.Invalid(.*)' is always false"
|
||||
)
|
||||
|
||||
# We should attempt to update this with all dash specific code
|
||||
@ -77,8 +79,8 @@ FILES=$(git ls-files -- "src/batchedlogger.*" \
|
||||
"src/rpc/governance.cpp" \
|
||||
"src/rpc/masternode.cpp" \
|
||||
"src/rpc/quorums.cpp" \
|
||||
"src/spork.*" \
|
||||
"src/saltedhasher.*" \
|
||||
"src/spork.*" \
|
||||
"src/stacktraces.*" \
|
||||
"src/statsd_client.*" \
|
||||
"src/test/block_reward_reallocation_tests.cpp" \
|
||||
@ -88,7 +90,8 @@ FILES=$(git ls-files -- "src/batchedlogger.*" \
|
||||
"src/test/evo*.cpp" \
|
||||
"src/test/governance*.cpp" \
|
||||
"src/wallet/hdchain.*" \
|
||||
"src/unordered_lru_cache.h")
|
||||
"src/unordered_lru_cache.h" \
|
||||
)
|
||||
|
||||
|
||||
if ! command -v cppcheck > /dev/null; then
|
||||
|
Loading…
Reference in New Issue
Block a user