aboutsummaryrefslogtreecommitdiff
path: root/src/test/README.md
diff options
context:
space:
mode:
authorPieter Wuille <pieter.wuille@gmail.com>2015-04-28 10:27:16 -0700
committerWladimir J. van der Laan <laanwj@gmail.com>2015-07-27 18:31:30 +0200
commitbc484ef8db02715e283e4cddd2c972316c0688dd (patch)
tree244e2465dd56247d938fd2d0f8810c8864d8613f /src/test/README.md
parent92401c2d9051e5d07b9f5608604925575ebaffef (diff)
downloadbitcoin-bc484ef8db02715e283e4cddd2c972316c0688dd.tar.xz
Cache transaction validation successes
Conflicts: src/main.cpp src/test/test_bitcoin.cpp Github-Pull: #6077 Rebased-From: 17b11428c135203342aff38cabc8047e673f38ac 517e6dd25618522c716e64859554b0f29c6e65d0
Diffstat (limited to 'src/test/README.md')
-rw-r--r--src/test/README.md14
1 files changed, 13 insertions, 1 deletions
diff --git a/src/test/README.md b/src/test/README.md
index 7efce6f052..e36112bd4f 100644
--- a/src/test/README.md
+++ b/src/test/README.md
@@ -18,4 +18,16 @@ uint256_tests.cpp.
For further reading, I found the following website to be helpful in
explaining how the boost unit test framework works:
-[http://www.alittlemadness.com/2009/03/31/c-unit-testing-with-boosttest/](http://www.alittlemadness.com/2009/03/31/c-unit-testing-with-boosttest/). \ No newline at end of file
+[http://www.alittlemadness.com/2009/03/31/c-unit-testing-with-boosttest/](http://www.alittlemadness.com/2009/03/31/c-unit-testing-with-boosttest/).
+
+test_bitcoin has some built-in command-line arguments; for
+example, to run just the getarg_tests verbosely:
+
+ test_bitcoin --log_level=all --run_test=getarg_tests
+
+... or to run just the doubledash test:
+
+ test_bitcoin --run_test=getarg_tests/doubledash
+
+Run test_bitcoin --help for the full list.
+