Merge bitcoin/bitcoin#32325: ci: Add missing -Wno-error=array-bounds to valgrind fuzz

fa653cb416 ci: Add missing -Wno-error=array-bounds to valgrind fuzz (MarcoFalke)

Pull request description:

  Due to an upstream GCC issue, any debug/fuzz build which aborts on failed assumes will print a false positive array-bounds warning in `src/test/fuzz/txgraph.cpp`.

  This also affects one CI task.

  Fix the CI task by ignoring the error for now.

  Fixes https://github.com/bitcoin/bitcoin/issues/32276

ACKs for top commit:
  fanquake:
    ACK fa653cb416 - checked native fuzz

Tree-SHA512: 0f6c5ec8d96e0bf96cd008e2de5db59e528086a67dcb77f3e59a0d83225d880a59e960d65c5bc8b5ae3de9d5d301bfc7737d95c282aa1bcc740a42561f610ca8
This commit is contained in:
merge-script 2025-04-22 17:02:38 +01:00
commit 8406a9f4f1
No known key found for this signature in database
GPG key ID: 2EEB9F5CC09526C1

View file

@ -17,4 +17,5 @@ export FUZZ_TESTS_CONFIG="--valgrind"
export GOAL="all" export GOAL="all"
export BITCOIN_CONFIG="\ export BITCOIN_CONFIG="\
-DBUILD_FOR_FUZZING=ON \ -DBUILD_FOR_FUZZING=ON \
-DCMAKE_CXX_FLAGS='-Wno-error=array-bounds' \
" "