@@ -17,26 +17,31 @@ and tests weren't explicitly disabled.
17
17
18
18
After configuring, they can be run with ` make check ` .
19
19
20
- To run the bitcoind tests manually, launch ` src/test/test_bitcoin ` . To recompile
20
+ To run the unit tests manually, launch ` src/test/test_bitcoin ` . To recompile
21
21
after a test file was modified, run ` make ` and then run the test again. If you
22
22
modify a non-test file, use ` make -C src/test ` to recompile only what's needed
23
- to run the bitcoind tests.
23
+ to run the unit tests.
24
24
25
- To add more bitcoind tests, add ` BOOST_AUTO_TEST_CASE ` functions to the existing
25
+ To add more unit tests, add ` BOOST_AUTO_TEST_CASE ` functions to the existing
26
26
.cpp files in the ` test/ ` directory or add new .cpp files that
27
27
implement new ` BOOST_AUTO_TEST_SUITE ` sections.
28
28
29
- To run the bitcoin-qt tests manually, launch ` src/qt/test/test_bitcoin-qt `
29
+ To run the GUI unit tests manually, launch ` src/qt/test/test_bitcoin-qt `
30
30
31
- To add more bitcoin-qt tests, add them to the ` src/qt/test/ ` directory and
31
+ To add more GUI unit tests, add them to the ` src/qt/test/ ` directory and
32
32
the ` src/qt/test/test_main.cpp ` file.
33
33
34
34
### Running individual tests
35
35
36
- test_bitcoin has some built-in command-line arguments; for
37
- example, to run just the getarg_tests verbosely:
36
+ ` test_bitcoin ` has some built-in command-line arguments; for
37
+ example, to run just the ` getarg_tests ` verbosely:
38
38
39
- test_bitcoin --log_level=all --run_test=getarg_tests
39
+ test_bitcoin --log_level=all --run_test=getarg_tests -- DEBUG_LOG_OUT
40
+
41
+ ` log_level ` controls the verbosity of the test framework, which logs when a
42
+ test case is entered, for example. The ` DEBUG_LOG_OUT ` after the two dashes
43
+ redirects the debug log, which would normally go to a file in the test datadir
44
+ (` BasicTestingSetup::m_path_root ` ), to the standard terminal output.
40
45
41
46
... or to run just the doubledash test:
42
47
@@ -56,11 +61,15 @@ see `uint256_tests.cpp`.
56
61
57
62
### Logging and debugging in unit tests
58
63
64
+ ` make check ` will write to a log file ` foo_tests.cpp.log ` and display this file
65
+ on failure. For running individual tests verbosely, refer to the section
66
+ [ above] ( #running-individual-tests ) .
67
+
59
68
To write to logs from unit tests you need to use specific message methods
60
69
provided by Boost. The simplest is ` BOOST_TEST_MESSAGE ` .
61
70
62
- For debugging you can launch the test_bitcoin executable with ` gdb ` or ` lldb ` and
63
- start debugging, just like you would with bitcoind :
71
+ For debugging you can launch the ` test_bitcoin ` executable with ` gdb ` or ` lldb ` and
72
+ start debugging, just like you would with any other program :
64
73
65
74
``` bash
66
75
gdb src/test/test_bitcoin
0 commit comments