From fa933d6985830382c7e2da740bc363bf6a52c4ae Mon Sep 17 00:00:00 2001 From: MarcoFalke Date: Tue, 29 Nov 2022 15:27:51 +0100 Subject: [PATCH] test: Move feature_backwards_compatibility.py to wallet_backwards_compatibility.py --- test/functional/test_framework/test_node.py | 2 +- test/functional/test_runner.py | 4 ++-- ...rds_compatibility.py => wallet_backwards_compatibility.py} | 4 ---- 3 files changed, 3 insertions(+), 7 deletions(-) rename test/functional/{feature_backwards_compatibility.py => wallet_backwards_compatibility.py} (99%) diff --git a/test/functional/test_framework/test_node.py b/test/functional/test_framework/test_node.py index fc93940b630..2d3b105fa2d 100755 --- a/test/functional/test_framework/test_node.py +++ b/test/functional/test_framework/test_node.py @@ -337,7 +337,7 @@ class TestNode(): return self.log.debug("Stopping node") try: - # Do not use wait argument when testing older nodes, e.g. in feature_backwards_compatibility.py + # Do not use wait argument when testing older nodes, e.g. in wallet_backwards_compatibility.py if self.version_is_at_least(180000): self.stop(wait=wait) else: diff --git a/test/functional/test_runner.py b/test/functional/test_runner.py index b9adb5dcb5d..747982153f9 100755 --- a/test/functional/test_runner.py +++ b/test/functional/test_runner.py @@ -226,8 +226,8 @@ BASE_SCRIPTS = [ 'wallet_txn_doublespend.py --legacy-wallet', 'wallet_multisig_descriptor_psbt.py --descriptors', 'wallet_txn_doublespend.py --descriptors', - 'feature_backwards_compatibility.py --legacy-wallet', - 'feature_backwards_compatibility.py --descriptors', + 'wallet_backwards_compatibility.py --legacy-wallet', + 'wallet_backwards_compatibility.py --descriptors', 'wallet_txn_clone.py --mineblock', 'feature_notifications.py', 'rpc_getblockfilter.py', diff --git a/test/functional/feature_backwards_compatibility.py b/test/functional/wallet_backwards_compatibility.py similarity index 99% rename from test/functional/feature_backwards_compatibility.py rename to test/functional/wallet_backwards_compatibility.py index c1855b9da4d..c9cb3285fb2 100755 --- a/test/functional/feature_backwards_compatibility.py +++ b/test/functional/wallet_backwards_compatibility.py @@ -7,10 +7,6 @@ Test various backwards compatibility scenarios. Requires previous releases binaries, see test/README.md. -v0.15.2 is not required by this test, but it is used in wallet_upgradewallet.py. -Due to a hardfork in regtest, it can't be used to sync nodes. - - Due to RPC changes introduced in various versions the below tests won't work for older versions without some patches or workarounds.