Skip to content

Commit 90600bc

Browse files
committed
[tests] Rename wallet_* functional tests.
1 parent ca6523d commit 90600bc

23 files changed

+27
-27
lines changed

test/functional/test_runner.py

Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -55,46 +55,46 @@
5555
BASE_SCRIPTS= [
5656
# Scripts that are run by the travis build process.
5757
# Longest test should go first, to favor running tests in parallel
58-
'wallet-hd.py',
59-
'walletbackup.py',
58+
'wallet_hd.py',
59+
'wallet_backup.py',
6060
# vv Tests less than 5m vv
6161
'feature_block.py',
6262
'fundrawtransaction.py',
6363
'p2p-compactblocks.py',
6464
'feature_segwit.py',
6565
# vv Tests less than 2m vv
66-
'wallet.py',
67-
'wallet-accounts.py',
66+
'wallet_basic.py',
67+
'wallet_accounts.py',
6868
'p2p-segwit.py',
69-
'wallet-dump.py',
69+
'wallet_dump.py',
7070
'listtransactions.py',
7171
# vv Tests less than 60s vv
7272
'sendheaders.py',
73-
'zapwallettxes.py',
74-
'importmulti.py',
73+
'wallet_zapwallettxes.py',
74+
'wallet_importmulti.py',
7575
'mempool_limit.py',
7676
'merkle_blocks.py',
77-
'receivedby.py',
78-
'abandonconflict.py',
77+
'wallet_listreceivedby.py',
78+
'wallet_abandonconflict.py',
7979
'feature_csv_activation.py',
8080
'rawtransactions.py',
81-
'address_types.py',
81+
'wallet_address_types.py',
8282
'feature_reindex.py',
8383
# vv Tests less than 30s vv
84-
'keypool-topup.py',
84+
'wallet_keypool_topup.py',
8585
'zmq_test.py',
8686
'bitcoin_cli.py',
8787
'mempool_resurrect_test.py',
88-
'txn_doublespend.py --mineblock',
89-
'txn_clone.py',
90-
'txn_clone.py --segwit',
88+
'wallet_txn_doublespend.py --mineblock',
89+
'wallet_txn_clone.py',
90+
'wallet_txn_clone.py --segwit',
9191
'getchaintips.py',
9292
'rest.py',
9393
'mempool_spendcoinbase.py',
9494
'mempool_reorg.py',
9595
'mempool_persist.py',
96-
'multiwallet.py',
97-
'multiwallet.py --usecli',
96+
'wallet_multiwallet.py',
97+
'wallet_multiwallet.py --usecli',
9898
'httpbasics.py',
9999
'multi_rpc.py',
100100
'feature_proxy.py',
@@ -103,29 +103,29 @@
103103
'decodescript.py',
104104
'blockchain.py',
105105
'deprecated_rpc.py',
106-
'disablewallet.py',
106+
'wallet_disable.py',
107107
'net.py',
108-
'keypool.py',
108+
'wallet_keypool.py',
109109
'p2p-mempool.py',
110110
'prioritise_transaction.py',
111111
'invalidblockrequest.py',
112112
'invalidtxrequest.py',
113113
'feature_versionbits_warning.py',
114114
'preciousblock.py',
115-
'importprunedfunds.py',
115+
'wallet_importprunedfunds.py',
116116
'signmessages.py',
117117
'feature_nulldummy.py',
118-
'import-rescan.py',
118+
'wallet_import_rescan.py',
119119
'mining.py',
120-
'bumpfee.py',
120+
'wallet_bumpfee.py',
121121
'rpcnamedargs.py',
122-
'listsinceblock.py',
122+
'wallet_listsinceblock.py',
123123
'p2p-leaktests.py',
124-
'wallet-encryption.py',
124+
'wallet_encryption.py',
125125
'feature_dersig.py',
126126
'feature_cltv.py',
127127
'uptime.py',
128-
'resendwallettransactions.py',
128+
'wallet_resendwallettransactions.py',
129129
'feature_minchainwork.py',
130130
'p2p-fingerprint.py',
131131
'feature_uacomment.py',
@@ -158,8 +158,8 @@
158158
# vv Tests less than 30s vv
159159
'feature_assumevalid.py',
160160
'example_test.py',
161-
'txn_doublespend.py',
162-
'txn_clone.py --mineblock',
161+
'wallet_txn_doublespend.py',
162+
'wallet_txn_clone.py --mineblock',
163163
'feature_notifications.py',
164164
'invalidateblock.py',
165165
'feature_rbf.py',
@@ -474,7 +474,7 @@ def was_successful(self):
474474
def check_script_prefixes():
475475
"""Check that no more than `EXPECTED_VIOLATION_COUNT` of the
476476
test scripts don't start with one of the allowed name prefixes."""
477-
EXPECTED_VIOLATION_COUNT = 60
477+
EXPECTED_VIOLATION_COUNT = 37
478478

479479
# LEEWAY is provided as a transition measure, so that pull-requests
480480
# that introduce new tests that don't conform with the naming
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)