mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-01-19 23:03:45 +01:00
face8123fdlog: [refactor] Use info level for init logs (MarcoFalke)fa183761cblog: Remove function name from init logs (MarcoFalke) Pull request description: Many of the normal, and expected init logs, which are run once after startup use the deprecated alias of `LogInfo`. Fix that by using `LogInfo` directly, which is a refactor, except for a few log lines that also have `__func__` removed. (Also remove the unused trailing `\n` char while touching those logs) ACKs for top commit: stickies-v: re-ACKface8123fdfanquake: ACKface8123fdTree-SHA512: 28c296129c9a31dff04f529c53db75057eae8a73fc7419e2f3068963dbb7b7fb9a457b2653f9120361fdb06ac97d1ee2be815c09ac659780dff01d7cd29f8480
Test library
This contains files for the test library, which is used by the test binaries (unit tests, benchmarks, fuzzers, gui tests).
Generally, the files in this folder should be well-separated modules. New code should be added to existing modules or (when in doubt) a new module should be created.
The utilities in here are compiled into a library, which does not hold any state. However, the main file setup_common
defines the common test setup for all test binaries. The test binaries will handle the global state when they
instantiate the BasicTestingSetup (or one of its derived classes).