From 7d6c02bd95436d0554331a479bfa6f6d054c9233 Mon Sep 17 00:00:00 2001 From: zebra-lucky Date: Tue, 25 Nov 2025 04:34:21 +0200 Subject: [PATCH] tests: fix taproot/frost cfg paths part2 --- test/run_tests.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/run_tests.sh b/test/run_tests.sh index 9f7def3..e2d160b 100755 --- a/test/run_tests.sh +++ b/test/run_tests.sh @@ -198,10 +198,10 @@ run_jm_tests () [[ -f ./joinmarket.cfg ]] && unlink ./joinmarket.cfg [[ -f ./test_taproot/joinmarket.cfg ]] && unlink ./test_taproot/joinmarket.cfg [[ -f ./test_frost/joinmarket.cfg ]] && unlink ./test_frost/joinmarket.cfg - mkdir -p taproot frost + mkdir -p test_taproot test_frost ln -s ./test/regtest_joinmarket.cfg ./joinmarket.cfg - ln -s ./test/regtest_taproot_joinmarket.cfg ./test_taproot/joinmarket.cfg - ln -s ./test/regtest_frost_joinmarket.cfg ./test_frost/joinmarket.cfg + ln -s `realpath ./test/regtest_taproot_joinmarket.cfg` test_taproot/joinmarket.cfg + ln -s `realpath ./test/regtest_frost_joinmarket.cfg` ./test_frost/joinmarket.cfg orig_umask="$(umask -p)" umask 077 rm -rf "${jm_test_datadir}"