aboutsummaryrefslogtreecommitdiff
path: root/test/functional/test_runner.py
diff options
context:
space:
mode:
authorAyush Sharma <mrayushs933@gmail.com>2022-06-30 19:12:01 +0530
committerAyush Sharma <mrayushs933@gmail.com>2022-06-30 19:12:01 +0530
commit0ee43d13e993a59fe1ba509f617dd0e01e1068e2 (patch)
treee97135c92568d208e8180363e826b79c5d1e512b /test/functional/test_runner.py
parent2111f32f2a6998531871e7792b5208992868ba7f (diff)
downloadbitcoin-0ee43d13e993a59fe1ba509f617dd0e01e1068e2.tar.xz
test: refactor rpc_signrawtransaction.py
rpc_signrawtransaction.py is split into rpc_signrawtransactionwithkey.py and wallet_signrawtransactionwithwallet.py. rpc_signrawtransactionwithkey.py can be run with the wallet disabled.
Diffstat (limited to 'test/functional/test_runner.py')
-rwxr-xr-xtest/functional/test_runner.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/test/functional/test_runner.py b/test/functional/test_runner.py
index 6a44f9d21d..07d0016277 100755
--- a/test/functional/test_runner.py
+++ b/test/functional/test_runner.py
@@ -181,8 +181,9 @@ BASE_SCRIPTS = [
'rpc_whitelist.py',
'feature_proxy.py',
'feature_syscall_sandbox.py',
- 'rpc_signrawtransaction.py --legacy-wallet',
- 'rpc_signrawtransaction.py --descriptors',
+ 'wallet_signrawtransactionwithwallet.py --legacy-wallet',
+ 'wallet_signrawtransactionwithwallet.py --descriptors',
+ 'rpc_signrawtransactionwithkey.py',
'rpc_rawtransaction.py --legacy-wallet',
'wallet_groups.py --legacy-wallet',
'wallet_transactiontime_rescan.py --descriptors',