aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2020-04-06 21:27:53 +0800
committerMarcoFalke <falke.marco@gmail.com>2020-04-06 21:27:56 +0800
commit299544f9c5375810f3b4f70e68d2340fe689108a (patch)
tree7baac764c19f7523669cbf50cd425c845478b904
parentadac12ae73e896e405e75b02a0a49c575d115b6e (diff)
parentc0c43ae1471347ea93614e9a25989f13b021f8a8 (diff)
downloadbitcoin-299544f9c5375810f3b4f70e68d2340fe689108a.tar.xz
Merge #18534: test: skip backwards compat tests if not compiled with wallet
c0c43ae1471347ea93614e9a25989f13b021f8a8 test: skip backwards compat tests if not compiled with wallet (fanquake) Pull request description: Top commit has no ACKs. Tree-SHA512: d9975a1490e69134408b6b724cea26a6c1397d43f59850283b9e338ae38e00fefbcd868fb141e0a4bb55f02076690a99331f29cfa2d0fa66c165032b24a94081
-rwxr-xr-xtest/functional/feature_backwards_compatibility.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/functional/feature_backwards_compatibility.py b/test/functional/feature_backwards_compatibility.py
index 0db74432e2..adf66243b7 100755
--- a/test/functional/feature_backwards_compatibility.py
+++ b/test/functional/feature_backwards_compatibility.py
@@ -40,6 +40,9 @@ class BackwardsCompatibilityTest(BitcoinTestFramework):
["-nowallet", "-walletrbf=1", "-addresstype=bech32"] # v0.17.1
]
+ def skip_test_if_missing_module(self):
+ self.skip_if_no_wallet()
+
def setup_nodes(self):
if os.getenv("TEST_PREVIOUS_RELEASES") == "false":
raise SkipTest("backwards compatibility tests")