diff options
author | fanquake <fanquake@gmail.com> | 2024-09-24 11:16:01 +0100 |
---|---|---|
committer | fanquake <fanquake@gmail.com> | 2024-10-22 16:06:06 +0100 |
commit | 0773560abf991fbc60c415e1556d86c4d5505f1b (patch) | |
tree | 44056b1f6c9a0e9441a49b99b89df587cb73894e | |
parent | b9173342084b1340a639e7a20e2b4a0f5852304a (diff) |
ci: add LLVM_SYMBOLIZER_PATH to Valgrind fuzz job
Otherwise:
```bash
NEW_FUNC[1/23]: ==4710==WARNING: invalid path to external symbolizer!
==4710==WARNING: Failed to use and restart external symbolizer!
0xb72010 (/ci_container_base/ci/scratch/build-x86_64-pc-linux-gnu/src/test/fuzz/fuzz+0xa6a010) (BuildId: 2087ad415cb752eea259ed750f3b78a7fcb0b43b)
NEW_FUNC[2/23]: 0xb72240 (/ci_container_base/ci/scratch/build-x86_64-pc-linux-gnu/src/test/fuzz/fuzz+0xa6a240) (BuildId: 2087ad415cb752eea259ed750f3b78a7fcb0b43b)
```
Github-Pull: #30961
Rebased-From: c1832584bfd1b352095bc41a13ff17564e456d43
-rwxr-xr-x | ci/test/00_setup_env_native_fuzz_with_valgrind.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ci/test/00_setup_env_native_fuzz_with_valgrind.sh b/ci/test/00_setup_env_native_fuzz_with_valgrind.sh index bf4d1573e3..9e410b06ee 100755 --- a/ci/test/00_setup_env_native_fuzz_with_valgrind.sh +++ b/ci/test/00_setup_env_native_fuzz_with_valgrind.sh @@ -17,3 +17,4 @@ export FUZZ_TESTS_CONFIG="--valgrind" export GOAL="install" export BITCOIN_CONFIG="--enable-fuzz --with-sanitizers=fuzzer CC=clang-16 CXX=clang++-16" export CCACHE_MAXSIZE=200M +export LLVM_SYMBOLIZER_PATH="/usr/bin/llvm-symbolizer-16" |