From b9b88f57a9b9a28e0f0614c12ae3012cf5050b10 Mon Sep 17 00:00:00 2001 From: Andrew Chow Date: Thu, 29 Oct 2020 19:41:05 -0400 Subject: Skip legacy wallet reliant tests if BDB is not compiled --- test/functional/test_framework/test_framework.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'test/functional/test_framework/test_framework.py') 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.""" -- cgit v1.2.3