diff options
author | fanquake <fanquake@gmail.com> | 2024-04-05 17:25:21 +0100 |
---|---|---|
committer | fanquake <fanquake@gmail.com> | 2024-04-05 17:25:38 +0100 |
commit | 8f1185feec3efdb8d0e3f6b7d0aee67bbdc3d653 (patch) | |
tree | 4fcdd576f6f4359962d5c55b614b4ac47894e1b5 /src/test | |
parent | 3a8dc562f259af2716a231f225130e0fdbab9ab1 (diff) | |
parent | 561a650e0f669159699224ddd4eb5b1c91cf9ac3 (diff) |
Merge bitcoin/bitcoin#29805: test: Fix debug recommendation in argsman_tests
561a650e0f669159699224ddd4eb5b1c91cf9ac3 test: Fix debug recommendation in argsman_tests (Fabian Jahr)
Pull request description:
There are recommendations in the `argsman_tests` comments on how to re-run and debug a test failure to see if it reflects an expected or unexpected change. The command tries to run a test in `util_tests` but this is in `argsman_tests` so the command doesn't work with just copy+paste. I didn't investigate further but I suspect that these tests were moved between files.
ACKs for top commit:
fanquake:
ACK 561a650e0f669159699224ddd4eb5b1c91cf9ac3
Tree-SHA512: b3bb94ba1635c9455149b455f2b30ee37a8067a6242339531ab54d428177a288da29a4a10702652305eb34aa7638f51dad35fa6b0e7b74617e445327b8c4c053
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/argsman_tests.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/argsman_tests.cpp b/src/test/argsman_tests.cpp index 1f46efe464..340208a1c9 100644 --- a/src/test/argsman_tests.cpp +++ b/src/test/argsman_tests.cpp @@ -904,7 +904,7 @@ BOOST_FIXTURE_TEST_CASE(util_ArgsMerge, ArgsMergeTestingSetup) // If check below fails, should manually dump the results with: // - // ARGS_MERGE_TEST_OUT=results.txt ./test_bitcoin --run_test=util_tests/util_ArgsMerge + // ARGS_MERGE_TEST_OUT=results.txt ./test_bitcoin --run_test=argsman_tests/util_ArgsMerge // // And verify diff against previous results to make sure the changes are expected. // @@ -1007,7 +1007,7 @@ BOOST_FIXTURE_TEST_CASE(util_ChainMerge, ChainMergeTestingSetup) // If check below fails, should manually dump the results with: // - // CHAIN_MERGE_TEST_OUT=results.txt ./test_bitcoin --run_test=util_tests/util_ChainMerge + // CHAIN_MERGE_TEST_OUT=results.txt ./test_bitcoin --run_test=argsman_tests/util_ChainMerge // // And verify diff against previous results to make sure the changes are expected. // |