Skip to content

Commit b87caf1

Browse files
committedNov 23, 2020
test: add is_bdb_compiled helper
1 parent 86bf3ae commit b87caf1

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed
 

‎test/config.ini.in

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ RPCAUTH=@abs_top_srcdir@/share/rpcauth/rpcauth.py
1717
# Which components are enabled. These are commented out by `configure` if they were disabled when running config.
1818
@ENABLE_WALLET_TRUE@ENABLE_WALLET=true
1919
@USE_SQLITE_TRUE@USE_SQLITE=true
20+
@USE_BDB_TRUE@USE_BDB=true
2021
@BUILD_BITCOIN_CLI_TRUE@ENABLE_CLI=true
2122
@BUILD_BITCOIN_WALLET_TRUE@ENABLE_WALLET_TOOL=true
2223
@BUILD_BITCOIND_TRUE@ENABLE_BITCOIND=true

‎test/functional/test_framework/test_framework.py

+10-1
Original file line numberDiff line numberDiff line change
@@ -782,6 +782,11 @@ def skip_if_no_sqlite(self):
782782
if not self.is_sqlite_compiled():
783783
raise SkipTest("sqlite has not been compiled.")
784784

785+
def skip_if_no_bdb(self):
786+
"""Skip the running test if BDB has not been compiled."""
787+
if not self.is_bdb_compiled():
788+
raise SkipTest("BDB has not been compiled.")
789+
785790
def skip_if_no_wallet_tool(self):
786791
"""Skip the running test if bitcoin-wallet has not been compiled."""
787792
if not self.is_wallet_tool_compiled():
@@ -822,5 +827,9 @@ def is_zmq_compiled(self):
822827
return self.config["components"].getboolean("ENABLE_ZMQ")
823828

824829
def is_sqlite_compiled(self):
825-
"""Checks whether the wallet module was compiled."""
830+
"""Checks whether the wallet module was compiled with Sqlite support."""
826831
return self.config["components"].getboolean("USE_SQLITE")
832+
833+
def is_bdb_compiled(self):
834+
"""Checks whether the wallet module was compiled with BDB support."""
835+
return self.config["components"].getboolean("USE_BDB")

0 commit comments

Comments
 (0)