aboutsummaryrefslogtreecommitdiff
path: root/test/functional/test_framework/test_framework.py
diff options
context:
space:
mode:
authorAndrew Chow <achow101-github@achow101.com>2020-10-29 19:41:05 -0400
committerAndrew Chow <achow101-github@achow101.com>2021-01-27 12:52:46 -0500
commitb9b88f57a9b9a28e0f0614c12ae3012cf5050b10 (patch)
tree6d17877cfcf75a849471c9f4b9e16a0937d45cf1 /test/functional/test_framework/test_framework.py
parent6f36242389bd3e7eacf594ce90491e8ccca70f3a (diff)
downloadbitcoin-b9b88f57a9b9a28e0f0614c12ae3012cf5050b10.tar.xz
Skip legacy wallet reliant tests if BDB is not compiled
Diffstat (limited to 'test/functional/test_framework/test_framework.py')
-rwxr-xr-xtest/functional/test_framework/test_framework.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/functional/test_framework/test_framework.py b/test/functional/test_framework/test_framework.py
index 9bbe2e649f..99bf8d499a 100755
--- a/test/functional/test_framework/test_framework.py
+++ b/test/functional/test_framework/test_framework.py
@@ -789,6 +789,8 @@ class BitcoinTestFramework(metaclass=BitcoinTestMetaClass):
raise SkipTest("wallet has not been compiled.")
if self.options.descriptors:
self.skip_if_no_sqlite()
+ else:
+ self.skip_if_no_bdb()
def skip_if_no_sqlite(self):
"""Skip the running test if sqlite has not been compiled."""