diff options
author | Andrew Chow <achow101-github@achow101.com> | 2020-10-29 19:41:05 -0400 |
---|---|---|
committer | Andrew Chow <achow101-github@achow101.com> | 2021-01-27 12:52:46 -0500 |
commit | b9b88f57a9b9a28e0f0614c12ae3012cf5050b10 (patch) | |
tree | 6d17877cfcf75a849471c9f4b9e16a0937d45cf1 | |
parent | 6f36242389bd3e7eacf594ce90491e8ccca70f3a (diff) |
Skip legacy wallet reliant tests if BDB is not compiled
-rwxr-xr-x | test/functional/test_framework/test_framework.py | 2 |
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.""" |