mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-04-29 14:59:39 -04:00
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 ACK893ca54585
hebasto: ACK893ca54585
, I have reviewed the code and it looks OK. Tree-SHA512: efd5a75b607a6a7889333674b9a1fccf30b6a80bb2aa941f9dcc10b2e0b6158d8c870d58aa76cef2a0280782570400730828d6a4aaf806b83959e9f4bc7313f4
This commit is contained in:
commit
72c150dfe7
2 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
|
||||
|
|
|
@ -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);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue