Test rpc_help.py failed: Check whether ZMQ is enabled or not.
This commit is contained in:
parent
59ecacfc84
commit
8dfc2f30de
2 changed files with 15 additions and 4 deletions
test/functional/test_framework
|
@ -488,8 +488,13 @@ def skip_if_no_py3_zmq():
|
|||
|
||||
def skip_if_no_bitcoind_zmq(test_instance):
|
||||
"""Skip the running test if bitcoind has not been compiled with zmq support."""
|
||||
if not is_zmq_enabled(test_instance):
|
||||
raise SkipTest("bitcoind has not been built with zmq enabled.")
|
||||
|
||||
|
||||
def is_zmq_enabled(test_instance):
|
||||
"""Checks whether zmq is enabled or not."""
|
||||
config = configparser.ConfigParser()
|
||||
config.read_file(open(test_instance.options.configfile))
|
||||
|
||||
if not config["components"].getboolean("ENABLE_ZMQ"):
|
||||
raise SkipTest("bitcoind has not been built with zmq enabled.")
|
||||
return config["components"].getboolean("ENABLE_ZMQ")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue