Skip to content

Commit 9049ff2

Browse files
committed
contrib: fix test_deterministic_coverage.sh script for out-of-tree builds
1 parent f93d6cb commit 9049ff2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

contrib/devtools/test_deterministic_coverage.sh

+4-4
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ NON_DETERMINISTIC_TESTS=(
3434
"wallet_tests/wallet_disableprivkeys" # validation.cpp: if (signals.CallbacksPending() > 10)
3535
)
3636

37-
TEST_BITCOIN_BINARY="src/test/test_bitcoin"
37+
TEST_BITCOIN_BINARY="build/src/test/test_bitcoin"
3838

3939
print_usage() {
4040
echo "Usage: $0 [custom test filter (default: all but known non-deterministic tests)] [number of test runs (default: 2)]"
@@ -86,7 +86,7 @@ if [[ ! -e ${TEST_BITCOIN_BINARY} ]]; then
8686
fi
8787

8888
get_file_suffix_count() {
89-
find src/ -type f -name "*.$1" | wc -l
89+
find build/src/ -type f -name "*.$1" | wc -l
9090
}
9191

9292
if [[ $(get_file_suffix_count gcno) == 0 ]]; then
@@ -102,7 +102,7 @@ TEST_RUN_ID=0
102102
while [[ ${TEST_RUN_ID} -lt ${N_TEST_RUNS} ]]; do
103103
TEST_RUN_ID=$((TEST_RUN_ID + 1))
104104
echo "[$(date +"%Y-%m-%d %H:%M:%S")] Measuring coverage, run #${TEST_RUN_ID} of ${N_TEST_RUNS}"
105-
find src/ -type f -name "*.gcda" -exec rm {} \;
105+
find build/src/ -type f -name "*.gcda" -exec rm {} \;
106106
if [[ $(get_file_suffix_count gcda) != 0 ]]; then
107107
echo "Error: Stale *.gcda files found. Exiting."
108108
exit 1
@@ -119,7 +119,7 @@ while [[ ${TEST_RUN_ID} -lt ${N_TEST_RUNS} ]]; do
119119
exit 1
120120
fi
121121
GCOVR_TEMPFILE=$(mktemp)
122-
if ! gcovr --gcov-executable "${GCOV_EXECUTABLE}" -r src/ > "${GCOVR_TEMPFILE}"; then
122+
if ! gcovr --gcov-executable "${GCOV_EXECUTABLE}" -r src/ build/src > "${GCOVR_TEMPFILE}"; then
123123
echo "Error: gcovr failed. Output written to ${GCOVR_TEMPFILE}. Exiting."
124124
exit 1
125125
fi

0 commit comments

Comments
 (0)