aboutsummaryrefslogtreecommitdiff
path: root/src/test/README.md
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2015-07-27 16:26:46 +0200
committerWladimir J. van der Laan <laanwj@gmail.com>2015-07-27 16:31:07 +0200
commit08e9c57ba2aa808c608daa0b4503f1940a356f8c (patch)
tree0df44e4bf60db529846142b60cc2894c128d3d8b /src/test/README.md
parentca37e0f33980a1fe96ac4ed08fd7d692a7a592a5 (diff)
parent517e6dd25618522c716e64859554b0f29c6e65d0 (diff)
Merge pull request #6077
517e6dd Unit test doublespends in new blocks (Gavin Andresen) 17b1142 Cache transaction validation successes (Pieter Wuille)
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.
+