aboutsummaryrefslogtreecommitdiff
path: root/test/functional/test_runner.py
diff options
context:
space:
mode:
authorJohn Newbery <john@johnnewbery.com>2017-07-11 13:01:44 -0400
committerJohn Newbery <john@johnnewbery.com>2017-08-15 17:52:51 -0400
commitb23549f6e677a8e22953568704eac7ea0c2c1289 (patch)
tree08ca1c91358b359be47087c336fd8978b4bb061d /test/functional/test_runner.py
parent85aec87b11ec41295558175c63f1f5a849460fdf (diff)
downloadbitcoin-b23549f6e677a8e22953568704eac7ea0c2c1289.tar.xz
[tests] add TestNodeCLI class for calling bitcoin-cli for a node
Diffstat (limited to 'test/functional/test_runner.py')
-rwxr-xr-xtest/functional/test_runner.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/functional/test_runner.py b/test/functional/test_runner.py
index 93f180555d..01236b607e 100755
--- a/test/functional/test_runner.py
+++ b/test/functional/test_runner.py
@@ -279,6 +279,7 @@ def run_tests(test_list, src_dir, build_dir, exeext, tmpdir, jobs=1, enable_cove
#Set env vars
if "BITCOIND" not in os.environ:
os.environ["BITCOIND"] = build_dir + '/src/bitcoind' + exeext
+ os.environ["BITCOINCLI"] = build_dir + '/src/bitcoin-cli' + exeext
tests_dir = src_dir + '/test/functional/'