mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-06-05 12:40:16 +02:00
Merge bitcoin/bitcoin#32055: contrib: Fix deterministic-unittest-coverage tool path
893ca5458503b432b055f0cf8a9a5aa2cfe7f6e4 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 893ca5458503b432b055f0cf8a9a5aa2cfe7f6e4 hebasto: ACK 893ca5458503b432b055f0cf8a9a5aa2cfe7f6e4, I have reviewed the code and it looks OK. Tree-SHA512: efd5a75b607a6a7889333674b9a1fccf30b6a80bb2aa941f9dcc10b2e0b6158d8c870d58aa76cef2a0280782570400730828d6a4aaf806b83959e9f4bc7313f4
This commit is contained in:
commit
72c150dfe7
@ -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…
x
Reference in New Issue
Block a user