Merge bitcoin/bitcoin#32055: contrib: Fix deterministic-unittest-coverage tool path

893ca54585 contrib: Fix deterministic-unittest-coverage tool path (janb84)

Pull request description:

  Fix for the tooling introduced/modified in #31901 but the tool path is broken due to silent merge conflict introduced by #31161.

  The `deterministic-unittest-coverage` and `deterministic-fuzz-coverage` tools uses the `fuzz` and `test_bitcoind` binaries, for which the location was modified in #31161. This patch updates the location to align with that change.

ACKs for top commit:
  maflcko:
    lgtm ACK 893ca54585
  hebasto:
    ACK 893ca54585, I have reviewed the code and it looks OK.

Tree-SHA512: efd5a75b607a6a7889333674b9a1fccf30b6a80bb2aa941f9dcc10b2e0b6158d8c870d58aa76cef2a0280782570400730828d6a4aaf806b83959e9f4bc7313f4
This commit is contained in:
Hennadii Stepanov 2025-03-13 11:37:50 +00:00
commit 72c150dfe7
No known key found for this signature in database
GPG key ID: 410108112E7EA81F
2 changed files with 2 additions and 2 deletions

View file

@ -68,7 +68,7 @@ fn main() {
let build_dir = Path::new(build_dir);
let corpora_dir = Path::new(corpora_dir);
let fuzz_exe = build_dir.join("src/test/fuzz/fuzz");
let fuzz_exe = build_dir.join("bin/fuzz");
sanity_check(corpora_dir, &fuzz_exe);

View file

@ -58,7 +58,7 @@ fn main() {
}
let build_dir = Path::new(build_dir);
let test_exe = build_dir.join("src/test/test_bitcoin");
let test_exe = build_dir.join("bin/test_bitcoin");
sanity_check(&test_exe);