[tests] Rename rpc_* functional tests.

This commit is contained in:
Anthony Towns 2018-01-25 09:44:29 +10:00
parent 61b8f7f273
commit 81b79f2c39
18 changed files with 18 additions and 18 deletions

View File

@ -59,7 +59,7 @@ BASE_SCRIPTS= [
'wallet_backup.py', 'wallet_backup.py',
# vv Tests less than 5m vv # vv Tests less than 5m vv
'feature_block.py', 'feature_block.py',
'fundrawtransaction.py', 'rpc_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
@ -67,17 +67,17 @@ BASE_SCRIPTS= [
'wallet_accounts.py', 'wallet_accounts.py',
'p2p_segwit.py', 'p2p_segwit.py',
'wallet_dump.py', 'wallet_dump.py',
'listtransactions.py', 'rpc_listtransactions.py',
# vv Tests less than 60s vv # vv Tests less than 60s vv
'p2p_sendheaders.py', 'p2p_sendheaders.py',
'wallet_zapwallettxes.py', 'wallet_zapwallettxes.py',
'wallet_importmulti.py', 'wallet_importmulti.py',
'mempool_limit.py', 'mempool_limit.py',
'merkle_blocks.py', 'rpc_txoutproof.py',
'wallet_listreceivedby.py', 'wallet_listreceivedby.py',
'wallet_abandonconflict.py', 'wallet_abandonconflict.py',
'feature_csv_activation.py', 'feature_csv_activation.py',
'rawtransactions.py', 'rpc_rawtransaction.py',
'wallet_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
@ -88,7 +88,7 @@ BASE_SCRIPTS= [
'wallet_txn_doublespend.py --mineblock', 'wallet_txn_doublespend.py --mineblock',
'wallet_txn_clone.py', 'wallet_txn_clone.py',
'wallet_txn_clone.py --segwit', 'wallet_txn_clone.py --segwit',
'getchaintips.py', 'rpc_getchaintips.py',
'rest.py', 'rest.py',
'mempool_spendcoinbase.py', 'mempool_spendcoinbase.py',
'mempool_reorg.py', 'mempool_reorg.py',
@ -96,35 +96,35 @@ BASE_SCRIPTS= [
'wallet_multiwallet.py', 'wallet_multiwallet.py',
'wallet_multiwallet.py --usecli', 'wallet_multiwallet.py --usecli',
'httpbasics.py', 'httpbasics.py',
'multi_rpc.py', 'rpc_users.py',
'feature_proxy.py', 'feature_proxy.py',
'signrawtransactions.py', 'rpc_signrawtransaction.py',
'p2p_disconnect_ban.py', 'p2p_disconnect_ban.py',
'decodescript.py', 'rpc_decodescript.py',
'blockchain.py', 'rpc_blockchain.py',
'deprecated_rpc.py', 'rpc_deprecated.py',
'wallet_disable.py', 'wallet_disable.py',
'net.py', 'rpc_net.py',
'wallet_keypool.py', 'wallet_keypool.py',
'p2p_mempool.py', 'p2p_mempool.py',
'prioritise_transaction.py', 'prioritise_transaction.py',
'p2p_invalid_block.py', 'p2p_invalid_block.py',
'p2p_invalid_tx.py', 'p2p_invalid_tx.py',
'feature_versionbits_warning.py', 'feature_versionbits_warning.py',
'preciousblock.py', 'rpc_preciousblock.py',
'wallet_importprunedfunds.py', 'wallet_importprunedfunds.py',
'signmessages.py', 'rpc_signmessage.py',
'feature_nulldummy.py', 'feature_nulldummy.py',
'wallet_import_rescan.py', 'wallet_import_rescan.py',
'mining.py', 'mining.py',
'wallet_bumpfee.py', 'wallet_bumpfee.py',
'rpcnamedargs.py', 'rpc_named_arguments.py',
'wallet_listsinceblock.py', 'wallet_listsinceblock.py',
'p2p_leak.py', 'p2p_leak.py',
'wallet_encryption.py', 'wallet_encryption.py',
'feature_dersig.py', 'feature_dersig.py',
'feature_cltv.py', 'feature_cltv.py',
'uptime.py', 'rpc_uptime.py',
'wallet_resendwallettransactions.py', 'wallet_resendwallettransactions.py',
'feature_minchainwork.py', 'feature_minchainwork.py',
'p2p_fingerprint.py', 'p2p_fingerprint.py',
@ -154,14 +154,14 @@ EXTENDED_SCRIPTS = [
# vv Tests less than 60s vv # vv Tests less than 60s vv
'feature_bip9_softforks.py', 'feature_bip9_softforks.py',
'p2p_feefilter.py', 'p2p_feefilter.py',
'rpcbind_test.py', 'rpc_bind.py',
# vv Tests less than 30s vv # vv Tests less than 30s vv
'feature_assumevalid.py', 'feature_assumevalid.py',
'example_test.py', 'example_test.py',
'wallet_txn_doublespend.py', 'wallet_txn_doublespend.py',
'wallet_txn_clone.py --mineblock', 'wallet_txn_clone.py --mineblock',
'feature_notifications.py', 'feature_notifications.py',
'invalidateblock.py', 'rpc_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 = 24 EXPECTED_VIOLATION_COUNT = 7
# 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