diff options
author | fanquake <fanquake@gmail.com> | 2024-09-24 11:16:01 +0100 |
---|---|---|
committer | fanquake <fanquake@gmail.com> | 2024-09-24 17:04:44 +0100 |
commit | c1832584bfd1b352095bc41a13ff17564e456d43 (patch) | |
tree | 9b2db597f7e1394c3dc17d5aa1c8399e8674a2f5 /ci/test | |
parent | 393f323bd60b9d47be697820a7ddf075700a7273 (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)
```
Diffstat (limited to 'ci/test')
-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 867615c015..c65c05bff9 100755 --- a/ci/test/00_setup_env_native_fuzz_with_valgrind.sh +++ b/ci/test/00_setup_env_native_fuzz_with_valgrind.sh @@ -21,3 +21,4 @@ export BITCOIN_CONFIG="\ -DCMAKE_C_COMPILER=clang-16 \ -DCMAKE_CXX_COMPILER=clang++-16 \ " +export LLVM_SYMBOLIZER_PATH="/usr/bin/llvm-symbolizer-16" |