diff options
| author | fanquake <[email protected]> | 2020-04-06 09:03:17 +0800 |
|---|---|---|
| committer | fanquake <[email protected]> | 2020-04-06 09:03:17 +0800 |
| commit | c0c43ae1471347ea93614e9a25989f13b021f8a8 (patch) | |
| tree | c320ebc8d2a6c2911fb164f7954af47967d09817 | |
| parent | Merge #18515: test: add BIP37 remote crash bug [CVE-2013-5700] test to p2p_fi... (diff) | |
| download | discoin-c0c43ae1471347ea93614e9a25989f13b021f8a8.tar.xz discoin-c0c43ae1471347ea93614e9a25989f13b021f8a8.zip | |
test: skip backwards compat tests if not compiled with wallet
| -rwxr-xr-x | test/functional/feature_backwards_compatibility.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/functional/feature_backwards_compatibility.py b/test/functional/feature_backwards_compatibility.py index 0db74432e..adf66243b 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") |