Skip to content

Commit 7777703

Browse files
author
MarcoFalke
committed
doc: Explain new test logging
1 parent 72ef366 commit 7777703

File tree

1 file changed

+19
-10
lines changed

1 file changed

+19
-10
lines changed

src/test/README.md

+19-10
Original file line numberDiff line numberDiff line change
@@ -17,26 +17,31 @@ and tests weren't explicitly disabled.
1717

1818
After configuring, they can be run with `make check`.
1919

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
2121
after a test file was modified, run `make` and then run the test again. If you
2222
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.
2424

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
2626
.cpp files in the `test/` directory or add new .cpp files that
2727
implement new `BOOST_AUTO_TEST_SUITE` sections.
2828

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`
3030

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
3232
the `src/qt/test/test_main.cpp` file.
3333

3434
### Running individual tests
3535

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:
3838

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.
4045

4146
... or to run just the doubledash test:
4247

@@ -56,11 +61,15 @@ see `uint256_tests.cpp`.
5661

5762
### Logging and debugging in unit tests
5863

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+
5968
To write to logs from unit tests you need to use specific message methods
6069
provided by Boost. The simplest is `BOOST_TEST_MESSAGE`.
6170

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:
6473

6574
```bash
6675
gdb src/test/test_bitcoin

0 commit comments

Comments
 (0)