From f3a252414fe7f565046e35bf8a23761493c29aaa Mon Sep 17 00:00:00 2001 From: djaen Date: Tue, 19 Jun 2018 09:05:44 +0200 Subject: [PATCH] Fix for BITCOIND env variable --- test/functional/test_runner.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/functional/test_runner.py b/test/functional/test_runner.py index 5886ed4c26..67131a2a03 100755 --- a/test/functional/test_runner.py +++ b/test/functional/test_runner.py @@ -319,8 +319,8 @@ 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 + os.environ["BITCOIND"] = build_dir + '/src/qtumd' + exeext + os.environ["BITCOINCLI"] = build_dir + '/src/qtum-cli' + exeext tests_dir = src_dir + '/test/functional/'