Skip to content

Commit a73715e

Browse files
committed
Merge bitcoin#28865: test: migrate to some per-symbol ubsan suppressions
fd30e96 test: migrate to some per-symbol ubsan suppressions (fanquake) Pull request description: Now that the symbolizer should be hanging around (bitcoin#28814), migrate some file-wide suppressions to be symbol specific. Should assist in catching new issues that may otherwise go unnoticed due to file-wide suppression. Only tested (so far) on aarch64 using the native ASAN & FUZZ CI. ACKs for top commit: maflcko: lgtm ACK fd30e96 dergoegge: utACK fd30e96 (if CI is green) Tree-SHA512: fbc44464d22813969dd4d1cdeab00042fa45f0af9bf1aed4fd3b688dc7b3c377a7c0f5f0c0a37ba65b649cfb5c7ff8ab2774500fe182d702c4340ca19f08479f
2 parents 830583e + fd30e96 commit a73715e

File tree

1 file changed

+19
-11
lines changed
  • test/sanitizer_suppressions

1 file changed

+19
-11
lines changed

test/sanitizer_suppressions/ubsan

Lines changed: 19 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -39,28 +39,36 @@ shift-base:test/fuzz/crypto_diff_fuzz_chacha20.cpp
3939
# list is used to suppress -fsanitize=integer warnings when running our CI UBSan
4040
# job.
4141
unsigned-integer-overflow:arith_uint256.h
42-
unsigned-integer-overflow:common/bloom.cpp
43-
unsigned-integer-overflow:coins.cpp
44-
unsigned-integer-overflow:compressor.cpp
42+
unsigned-integer-overflow:CBloomFilter::Hash
43+
unsigned-integer-overflow:CRollingBloomFilter::insert
44+
unsigned-integer-overflow:RollingBloomHash
45+
unsigned-integer-overflow:CCoinsViewCache::AddCoin
46+
unsigned-integer-overflow:CCoinsViewCache::BatchWrite
47+
unsigned-integer-overflow:CCoinsViewCache::DynamicMemoryUsage
48+
unsigned-integer-overflow:CCoinsViewCache::SpendCoin
49+
unsigned-integer-overflow:CCoinsViewCache::Uncache
50+
unsigned-integer-overflow:CompressAmount
51+
unsigned-integer-overflow:DecompressAmount
4552
unsigned-integer-overflow:crypto/
46-
unsigned-integer-overflow:hash.cpp
47-
unsigned-integer-overflow:policy/fees.cpp
53+
unsigned-integer-overflow:MurmurHash3
54+
unsigned-integer-overflow:CBlockPolicyEstimator::processBlockTx
55+
unsigned-integer-overflow:TxConfirmStats::EstimateMedianVal
4856
unsigned-integer-overflow:prevector.h
4957
unsigned-integer-overflow:script/interpreter.cpp
5058
unsigned-integer-overflow:xoroshiro128plusplus.h
51-
implicit-integer-sign-change:compat/stdin.cpp
59+
implicit-integer-sign-change:SetStdinEcho
5260
implicit-integer-sign-change:compressor.h
5361
implicit-integer-sign-change:crypto/
54-
implicit-integer-sign-change:policy/fees.cpp
62+
implicit-integer-sign-change:TxConfirmStats::removeTx
5563
implicit-integer-sign-change:prevector.h
56-
implicit-integer-sign-change:script/bitcoinconsensus.cpp
57-
implicit-integer-sign-change:script/interpreter.cpp
64+
implicit-integer-sign-change:verify_flags
65+
implicit-integer-sign-change:EvalScript
5866
implicit-integer-sign-change:serialize.h
5967
implicit-signed-integer-truncation:crypto/
6068
implicit-unsigned-integer-truncation:crypto/
6169
shift-base:arith_uint256.cpp
6270
shift-base:crypto/
63-
shift-base:hash.cpp
71+
shift-base:ROTL32
6472
shift-base:streams.h
65-
shift-base:util/bip32.cpp
73+
shift-base:FormatHDKeypath
6674
shift-base:xoroshiro128plusplus.h

0 commit comments

Comments
 (0)