From ebfec2218a3c4a28b35ef2df8775807e37dd98bf Mon Sep 17 00:00:00 2001 From: Alexander Block Date: Tue, 24 Sep 2019 01:09:01 +0200 Subject: [PATCH] Dashify BITCOINCLI --- test/functional/test_framework/test_node.py | 2 +- test/functional/test_runner.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/functional/test_framework/test_node.py b/test/functional/test_framework/test_node.py index 266077c6e8..f5e86e4f4b 100755 --- a/test/functional/test_framework/test_node.py +++ b/test/functional/test_framework/test_node.py @@ -51,7 +51,7 @@ class TestNode(): self.extra_args = extra_args self.args = [self.binary, "-datadir=" + self.datadir, "-server", "-keypool=1", "-discover=0", "-rest", "-logtimemicros", "-debug", "-debugexclude=libevent", "-debugexclude=leveldb", "-mocktime=" + str(mocktime), "-uacomment=testnode%d" % i] - self.cli = TestNodeCLI(os.getenv("BITCOINCLI", "bitcoin-cli"), self.datadir) + self.cli = TestNodeCLI(os.getenv("BITCOINCLI", "dash-cli"), self.datadir) # Don't try auto backups (they fail a lot when running tests) self.args.append("-createwalletbackups=0") diff --git a/test/functional/test_runner.py b/test/functional/test_runner.py index 0b7869dca3..f0d34f4051 100755 --- a/test/functional/test_runner.py +++ b/test/functional/test_runner.py @@ -295,7 +295,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/dashd' + exeext - os.environ["BITCOINCLI"] = build_dir + '/src/bitcoin-cli' + exeext + os.environ["BITCOINCLI"] = build_dir + '/src/dash-cli' + exeext tests_dir = src_dir + '/test/functional/'