Skip to content

Commit

Permalink
Add option to run bitcoin-util-test.py manually
Browse files Browse the repository at this point in the history
  • Loading branch information
jnewbery committed Sep 29, 2016
1 parent cc9e8ac commit b82f493
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 3 deletions.
8 changes: 8 additions & 0 deletions src/test/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,11 @@ example, to run just the getarg_tests verbosely:

Run `test_bitcoin --help` for the full list.

### bitcoin-util-test.py

The test directory also contains the bitcoin-util-test.py tool, which tests bitcoin utils (currently just bitcoin-tx). This test gets run automatically during the `make check` build process. It is also possible to run the test manually from the src directory:

```
test/bitcoin-util-test.py --srcdir=[current directory]
```
22 changes: 19 additions & 3 deletions src/test/bitcoin-util-test.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,24 @@
import os
import bctest
import buildenv
import argparse

if __name__ == '__main__':
bctest.bctester(os.environ["srcdir"] + "/test/data",
"bitcoin-util-test.json",buildenv)
help_text="""Test framework for bitcoin utils.
Runs automatically during `make check`.
Can also be run manually from the src directory by specifiying the source directory:
test/bitcoin-util-test.py --src=[srcdir]
"""


if __name__ == '__main__':
try:
srcdir = os.environ["srcdir"]
except:
parser = argparse.ArgumentParser(description=help_text)
parser.add_argument('-s', '--srcdir')
args = parser.parse_args()
srcdir = args.srcdir
bctest.bctester(srcdir + "/test/data", "bitcoin-util-test.json", buildenv)

0 comments on commit b82f493

Please sign in to comment.