Browse Source

--tracerpc option for regression tests

Run tests with --tracerpc and all RPC calls will dump to the console.
Very helpful for debugging.
0.10
Gavin Andresen 10 years ago
parent
commit
ec01243c14
No known key found for this signature in database
GPG Key ID: 7588242FBE38D3A8
  1. 6
      qa/rpc-tests/test_framework.py

6
qa/rpc-tests/test_framework.py

@ -48,9 +48,15 @@ class BitcoinTestFramework(object): @@ -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()

Loading…
Cancel
Save