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
committerMarcoFalke <falke.marco@gmail.com>2017-10-03 18:31:40 +0200
commit016b9ada2111aaf41f3336c0179a1347355bc9e6 (patch)
treee16642ab0b6e3ff9c3a2adfd89416a2d83322b3e /test/functional/test_runner.py
parent5398f205e3ba1f7542deeba420f9e198bcb635f5 (diff)
downloadbitcoin-016b9ada2111aaf41f3336c0179a1347355bc9e6.tar.xz
[tests] add TestNodeCLI class for calling bitcoin-cli for a node
Github-Pull: #10798 Rebased-From: b23549f6e677a8e22953568704eac7ea0c2c1289
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/'