Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 7c37b6e

Browse files
committedJul 25, 2026
ci: use rincoin distdir name in out-of-tree build/test steps
After the litecoin->rincoin package rename, 'make distdir' produces rincoin-\System.Management.Automation.Internal.Host.InternalHost, but the harness still cd'd into litecoin-\System.Management.Automation.Internal.Host.InternalHost for the out-of-tree configure/build, failing with 'No such file or directory'. Update P_CI_DIR and the sequential unit-test glob to rincoin-*; the unit-test binary itself remains test_litecoin.
1 parent aabe209 commit 7c37b6e

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

 

‎ci/test/06_script_a.sh‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ BEGIN_FOLD distdir
3636
DOCKER_EXEC make distdir VERSION=$HOST
3737
END_FOLD
3838

39-
export P_CI_DIR="${BASE_BUILD_DIR}/litecoin-$HOST"
39+
export P_CI_DIR="${BASE_BUILD_DIR}/rincoin-$HOST"
4040

4141
BEGIN_FOLD configure
4242
DOCKER_EXEC ./configure --cache-file=../config.cache $BITCOIN_CONFIG_ALL $BITCOIN_CONFIG || ( (DOCKER_EXEC cat config.log) && false)

‎ci/test/06_script_b.sh‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ fi
3838

3939
if [ "$RUN_UNIT_TESTS_SEQUENTIAL" = "true" ]; then
4040
BEGIN_FOLD unit-tests-seq
41-
DOCKER_EXEC ${TEST_RUNNER_ENV} DIR_UNIT_TEST_DATA=${DIR_UNIT_TEST_DATA} LD_LIBRARY_PATH=$DEPENDS_DIR/$HOST/lib "${BASE_BUILD_DIR}/litecoin-*/src/test/test_litecoin*" --catch_system_errors=no -l test_suite
41+
DOCKER_EXEC ${TEST_RUNNER_ENV} DIR_UNIT_TEST_DATA=${DIR_UNIT_TEST_DATA} LD_LIBRARY_PATH=$DEPENDS_DIR/$HOST/lib "${BASE_BUILD_DIR}/rincoin-*/src/test/test_litecoin*" --catch_system_errors=no -l test_suite
4242
END_FOLD
4343
fi
4444

0 commit comments

Comments
 (0)
Please sign in to comment.