[tests] Rename wallet_* functional tests.
This commit is contained in:
parent
ca6523d0c8
commit
90600bc7db
23 changed files with 27 additions and 27 deletions
|
@ -55,46 +55,46 @@ TEST_EXIT_SKIPPED = 77
|
||||||
BASE_SCRIPTS= [
|
BASE_SCRIPTS= [
|
||||||
# Scripts that are run by the travis build process.
|
# Scripts that are run by the travis build process.
|
||||||
# Longest test should go first, to favor running tests in parallel
|
# Longest test should go first, to favor running tests in parallel
|
||||||
'wallet-hd.py',
|
'wallet_hd.py',
|
||||||
'walletbackup.py',
|
'wallet_backup.py',
|
||||||
# vv Tests less than 5m vv
|
# vv Tests less than 5m vv
|
||||||
'feature_block.py',
|
'feature_block.py',
|
||||||
'fundrawtransaction.py',
|
'fundrawtransaction.py',
|
||||||
'p2p-compactblocks.py',
|
'p2p-compactblocks.py',
|
||||||
'feature_segwit.py',
|
'feature_segwit.py',
|
||||||
# vv Tests less than 2m vv
|
# vv Tests less than 2m vv
|
||||||
'wallet.py',
|
'wallet_basic.py',
|
||||||
'wallet-accounts.py',
|
'wallet_accounts.py',
|
||||||
'p2p-segwit.py',
|
'p2p-segwit.py',
|
||||||
'wallet-dump.py',
|
'wallet_dump.py',
|
||||||
'listtransactions.py',
|
'listtransactions.py',
|
||||||
# vv Tests less than 60s vv
|
# vv Tests less than 60s vv
|
||||||
'sendheaders.py',
|
'sendheaders.py',
|
||||||
'zapwallettxes.py',
|
'wallet_zapwallettxes.py',
|
||||||
'importmulti.py',
|
'wallet_importmulti.py',
|
||||||
'mempool_limit.py',
|
'mempool_limit.py',
|
||||||
'merkle_blocks.py',
|
'merkle_blocks.py',
|
||||||
'receivedby.py',
|
'wallet_listreceivedby.py',
|
||||||
'abandonconflict.py',
|
'wallet_abandonconflict.py',
|
||||||
'feature_csv_activation.py',
|
'feature_csv_activation.py',
|
||||||
'rawtransactions.py',
|
'rawtransactions.py',
|
||||||
'address_types.py',
|
'wallet_address_types.py',
|
||||||
'feature_reindex.py',
|
'feature_reindex.py',
|
||||||
# vv Tests less than 30s vv
|
# vv Tests less than 30s vv
|
||||||
'keypool-topup.py',
|
'wallet_keypool_topup.py',
|
||||||
'zmq_test.py',
|
'zmq_test.py',
|
||||||
'bitcoin_cli.py',
|
'bitcoin_cli.py',
|
||||||
'mempool_resurrect_test.py',
|
'mempool_resurrect_test.py',
|
||||||
'txn_doublespend.py --mineblock',
|
'wallet_txn_doublespend.py --mineblock',
|
||||||
'txn_clone.py',
|
'wallet_txn_clone.py',
|
||||||
'txn_clone.py --segwit',
|
'wallet_txn_clone.py --segwit',
|
||||||
'getchaintips.py',
|
'getchaintips.py',
|
||||||
'rest.py',
|
'rest.py',
|
||||||
'mempool_spendcoinbase.py',
|
'mempool_spendcoinbase.py',
|
||||||
'mempool_reorg.py',
|
'mempool_reorg.py',
|
||||||
'mempool_persist.py',
|
'mempool_persist.py',
|
||||||
'multiwallet.py',
|
'wallet_multiwallet.py',
|
||||||
'multiwallet.py --usecli',
|
'wallet_multiwallet.py --usecli',
|
||||||
'httpbasics.py',
|
'httpbasics.py',
|
||||||
'multi_rpc.py',
|
'multi_rpc.py',
|
||||||
'feature_proxy.py',
|
'feature_proxy.py',
|
||||||
|
@ -103,29 +103,29 @@ BASE_SCRIPTS= [
|
||||||
'decodescript.py',
|
'decodescript.py',
|
||||||
'blockchain.py',
|
'blockchain.py',
|
||||||
'deprecated_rpc.py',
|
'deprecated_rpc.py',
|
||||||
'disablewallet.py',
|
'wallet_disable.py',
|
||||||
'net.py',
|
'net.py',
|
||||||
'keypool.py',
|
'wallet_keypool.py',
|
||||||
'p2p-mempool.py',
|
'p2p-mempool.py',
|
||||||
'prioritise_transaction.py',
|
'prioritise_transaction.py',
|
||||||
'invalidblockrequest.py',
|
'invalidblockrequest.py',
|
||||||
'invalidtxrequest.py',
|
'invalidtxrequest.py',
|
||||||
'feature_versionbits_warning.py',
|
'feature_versionbits_warning.py',
|
||||||
'preciousblock.py',
|
'preciousblock.py',
|
||||||
'importprunedfunds.py',
|
'wallet_importprunedfunds.py',
|
||||||
'signmessages.py',
|
'signmessages.py',
|
||||||
'feature_nulldummy.py',
|
'feature_nulldummy.py',
|
||||||
'import-rescan.py',
|
'wallet_import_rescan.py',
|
||||||
'mining.py',
|
'mining.py',
|
||||||
'bumpfee.py',
|
'wallet_bumpfee.py',
|
||||||
'rpcnamedargs.py',
|
'rpcnamedargs.py',
|
||||||
'listsinceblock.py',
|
'wallet_listsinceblock.py',
|
||||||
'p2p-leaktests.py',
|
'p2p-leaktests.py',
|
||||||
'wallet-encryption.py',
|
'wallet_encryption.py',
|
||||||
'feature_dersig.py',
|
'feature_dersig.py',
|
||||||
'feature_cltv.py',
|
'feature_cltv.py',
|
||||||
'uptime.py',
|
'uptime.py',
|
||||||
'resendwallettransactions.py',
|
'wallet_resendwallettransactions.py',
|
||||||
'feature_minchainwork.py',
|
'feature_minchainwork.py',
|
||||||
'p2p-fingerprint.py',
|
'p2p-fingerprint.py',
|
||||||
'feature_uacomment.py',
|
'feature_uacomment.py',
|
||||||
|
@ -158,8 +158,8 @@ EXTENDED_SCRIPTS = [
|
||||||
# vv Tests less than 30s vv
|
# vv Tests less than 30s vv
|
||||||
'feature_assumevalid.py',
|
'feature_assumevalid.py',
|
||||||
'example_test.py',
|
'example_test.py',
|
||||||
'txn_doublespend.py',
|
'wallet_txn_doublespend.py',
|
||||||
'txn_clone.py --mineblock',
|
'wallet_txn_clone.py --mineblock',
|
||||||
'feature_notifications.py',
|
'feature_notifications.py',
|
||||||
'invalidateblock.py',
|
'invalidateblock.py',
|
||||||
'feature_rbf.py',
|
'feature_rbf.py',
|
||||||
|
@ -474,7 +474,7 @@ class TestResult():
|
||||||
def check_script_prefixes():
|
def check_script_prefixes():
|
||||||
"""Check that no more than `EXPECTED_VIOLATION_COUNT` of the
|
"""Check that no more than `EXPECTED_VIOLATION_COUNT` of the
|
||||||
test scripts don't start with one of the allowed name prefixes."""
|
test scripts don't start with one of the allowed name prefixes."""
|
||||||
EXPECTED_VIOLATION_COUNT = 60
|
EXPECTED_VIOLATION_COUNT = 37
|
||||||
|
|
||||||
# LEEWAY is provided as a transition measure, so that pull-requests
|
# LEEWAY is provided as a transition measure, so that pull-requests
|
||||||
# that introduce new tests that don't conform with the naming
|
# that introduce new tests that don't conform with the naming
|
||||||
|
|
Loading…
Reference in a new issue