From ec01243c14294c0e6f25d093156aae6b4458466e Mon Sep 17 00:00:00 2001 From: Gavin Andresen Date: Thu, 23 Oct 2014 13:11:20 -0400 Subject: --tracerpc option for regression tests Run tests with --tracerpc and all RPC calls will dump to the console. Very helpful for debugging. --- qa/rpc-tests/test_framework.py | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'qa/rpc-tests/test_framework.py') diff --git a/qa/rpc-tests/test_framework.py b/qa/rpc-tests/test_framework.py index 5a18556655..bd20d4c9fe 100755 --- a/qa/rpc-tests/test_framework.py +++ b/qa/rpc-tests/test_framework.py @@ -48,9 +48,15 @@ class BitcoinTestFramework(object): help="Source directory containing bitcoind/bitcoin-cli (default: %default%)") parser.add_option("--tmpdir", dest="tmpdir", default=tempfile.mkdtemp(prefix="test"), help="Root directory for datadirs") + parser.add_option("--tracerpc", dest="trace_rpc", default=False, action="store_true", + help="Print out all RPC calls as they are made") self.add_options(parser) (self.options, self.args) = parser.parse_args() + if self.options.trace_rpc: + import logging + logging.basicConfig(level=logging.DEBUG) + os.environ['PATH'] = self.options.srcdir+":"+os.environ['PATH'] check_json_precision() -- cgit v1.2.3