[trivial] Add aarch64 to depends .gitignore
[bitcoinplatinum.git] / doc / unit-tests.md
blobafaece829c77d4832364231db459f25c23450e49
1 Compiling/running unit tests
2 ------------------------------------
4 Unit tests will be automatically compiled if dependencies were met in `./configure`
5 and tests weren't explicitly disabled.
7 After configuring, they can be run with `make check`.
9 To run the bitcoind tests manually, launch `src/test/test_bitcoin`.
11 To add more bitcoind tests, add `BOOST_AUTO_TEST_CASE` functions to the existing
12 .cpp files in the `test/` directory or add new .cpp files that
13 implement new BOOST_AUTO_TEST_SUITE sections.
15 To run the bitcoin-qt tests manually, launch `src/qt/test/test_bitcoin-qt`
17 To add more bitcoin-qt tests, add them to the `src/qt/test/` directory and
18 the `src/qt/test/test_main.cpp` file.