diff options
author | John Newbery <john@johnnewbery.com> | 2017-05-01 15:12:49 -0400 |
---|---|---|
committer | John Newbery <john@johnnewbery.com> | 2017-05-01 15:12:49 -0400 |
commit | b8251f63373ed58a05d104f9c1637d2c07b3569e (patch) | |
tree | 018248012b0999c9e86c23c6b34cad3c2da94531 /test/functional/test_framework | |
parent | e2b99b13131b5d0fd6fae6d55892c2ebb327d438 (diff) |
[tests] allow zmq test to be run in out-of-tree builds
Diffstat (limited to 'test/functional/test_framework')
-rwxr-xr-x | test/functional/test_framework/test_framework.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/functional/test_framework/test_framework.py b/test/functional/test_framework/test_framework.py index 473b7c14a9..896b3aafcd 100755 --- a/test/functional/test_framework/test_framework.py +++ b/test/functional/test_framework/test_framework.py @@ -124,6 +124,8 @@ class BitcoinTestFramework(object): help="The seed to use for assigning port numbers (default: current process id)") parser.add_option("--coveragedir", dest="coveragedir", help="Write tested RPC commands into this directory") + parser.add_option("--configfile", dest="configfile", + help="Location of the test framework config file") self.add_options(parser) (self.options, self.args) = parser.parse_args() |