mirror of
https://github.com/kvazar-network/kevacoin.git
synced 2025-01-12 08:08:25 +00:00
[tests] Rename feature_* functional tests.
This commit is contained in:
parent
f359afcc41
commit
ca6523d0c8
@ -133,7 +133,7 @@ Each `TestInstance` consists of:
|
|||||||
acceptance is tested against the given outcome.
|
acceptance is tested against the given outcome.
|
||||||
|
|
||||||
- For examples of tests written in this framework, see
|
- For examples of tests written in this framework, see
|
||||||
`invalidblockrequest.py` and `p2p-fullblocktest.py`.
|
`invalidblockrequest.py` and `feature_block.py`.
|
||||||
|
|
||||||
### test-framework modules
|
### test-framework modules
|
||||||
|
|
||||||
|
@ -58,10 +58,10 @@ BASE_SCRIPTS= [
|
|||||||
'wallet-hd.py',
|
'wallet-hd.py',
|
||||||
'walletbackup.py',
|
'walletbackup.py',
|
||||||
# vv Tests less than 5m vv
|
# vv Tests less than 5m vv
|
||||||
'p2p-fullblocktest.py',
|
'feature_block.py',
|
||||||
'fundrawtransaction.py',
|
'fundrawtransaction.py',
|
||||||
'p2p-compactblocks.py',
|
'p2p-compactblocks.py',
|
||||||
'segwit.py',
|
'feature_segwit.py',
|
||||||
# vv Tests less than 2m vv
|
# vv Tests less than 2m vv
|
||||||
'wallet.py',
|
'wallet.py',
|
||||||
'wallet-accounts.py',
|
'wallet-accounts.py',
|
||||||
@ -76,10 +76,10 @@ BASE_SCRIPTS= [
|
|||||||
'merkle_blocks.py',
|
'merkle_blocks.py',
|
||||||
'receivedby.py',
|
'receivedby.py',
|
||||||
'abandonconflict.py',
|
'abandonconflict.py',
|
||||||
'bip68-112-113-p2p.py',
|
'feature_csv_activation.py',
|
||||||
'rawtransactions.py',
|
'rawtransactions.py',
|
||||||
'address_types.py',
|
'address_types.py',
|
||||||
'reindex.py',
|
'feature_reindex.py',
|
||||||
# vv Tests less than 30s vv
|
# vv Tests less than 30s vv
|
||||||
'keypool-topup.py',
|
'keypool-topup.py',
|
||||||
'zmq_test.py',
|
'zmq_test.py',
|
||||||
@ -97,7 +97,7 @@ BASE_SCRIPTS= [
|
|||||||
'multiwallet.py --usecli',
|
'multiwallet.py --usecli',
|
||||||
'httpbasics.py',
|
'httpbasics.py',
|
||||||
'multi_rpc.py',
|
'multi_rpc.py',
|
||||||
'proxy_test.py',
|
'feature_proxy.py',
|
||||||
'signrawtransactions.py',
|
'signrawtransactions.py',
|
||||||
'disconnect_ban.py',
|
'disconnect_ban.py',
|
||||||
'decodescript.py',
|
'decodescript.py',
|
||||||
@ -110,11 +110,11 @@ BASE_SCRIPTS= [
|
|||||||
'prioritise_transaction.py',
|
'prioritise_transaction.py',
|
||||||
'invalidblockrequest.py',
|
'invalidblockrequest.py',
|
||||||
'invalidtxrequest.py',
|
'invalidtxrequest.py',
|
||||||
'p2p-versionbits-warning.py',
|
'feature_versionbits_warning.py',
|
||||||
'preciousblock.py',
|
'preciousblock.py',
|
||||||
'importprunedfunds.py',
|
'importprunedfunds.py',
|
||||||
'signmessages.py',
|
'signmessages.py',
|
||||||
'nulldummy.py',
|
'feature_nulldummy.py',
|
||||||
'import-rescan.py',
|
'import-rescan.py',
|
||||||
'mining.py',
|
'mining.py',
|
||||||
'bumpfee.py',
|
'bumpfee.py',
|
||||||
@ -122,17 +122,17 @@ BASE_SCRIPTS= [
|
|||||||
'listsinceblock.py',
|
'listsinceblock.py',
|
||||||
'p2p-leaktests.py',
|
'p2p-leaktests.py',
|
||||||
'wallet-encryption.py',
|
'wallet-encryption.py',
|
||||||
'bipdersig-p2p.py',
|
'feature_dersig.py',
|
||||||
'bip65-cltv-p2p.py',
|
'feature_cltv.py',
|
||||||
'uptime.py',
|
'uptime.py',
|
||||||
'resendwallettransactions.py',
|
'resendwallettransactions.py',
|
||||||
'minchainwork.py',
|
'feature_minchainwork.py',
|
||||||
'p2p-fingerprint.py',
|
'p2p-fingerprint.py',
|
||||||
'uacomment.py',
|
'feature_uacomment.py',
|
||||||
'p2p-acceptblock.py',
|
'p2p-acceptblock.py',
|
||||||
'feature_logging.py',
|
'feature_logging.py',
|
||||||
'node_network_limited.py',
|
'node_network_limited.py',
|
||||||
'conf_args.py',
|
'feature_config_args.py',
|
||||||
# Don't append tests at the end to avoid merge conflicts
|
# Don't append tests at the end to avoid merge conflicts
|
||||||
# Put them in a random line within the section that fits their approximate run-time
|
# Put them in a random line within the section that fits their approximate run-time
|
||||||
]
|
]
|
||||||
@ -140,29 +140,29 @@ BASE_SCRIPTS= [
|
|||||||
EXTENDED_SCRIPTS = [
|
EXTENDED_SCRIPTS = [
|
||||||
# These tests are not run by the travis build process.
|
# These tests are not 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
|
||||||
'pruning.py',
|
'feature_pruning.py',
|
||||||
# vv Tests less than 20m vv
|
# vv Tests less than 20m vv
|
||||||
'smartfees.py',
|
'feature_fee_estimation.py',
|
||||||
# vv Tests less than 5m vv
|
# vv Tests less than 5m vv
|
||||||
'maxuploadtarget.py',
|
'feature_maxuploadtarget.py',
|
||||||
'mempool_packages.py',
|
'mempool_packages.py',
|
||||||
'dbcrash.py',
|
'feature_dbcrash.py',
|
||||||
# vv Tests less than 2m vv
|
# vv Tests less than 2m vv
|
||||||
'bip68-sequence.py',
|
'feature_bip68_sequence.py',
|
||||||
'getblocktemplate_longpoll.py',
|
'getblocktemplate_longpoll.py',
|
||||||
'p2p-timeouts.py',
|
'p2p-timeouts.py',
|
||||||
# vv Tests less than 60s vv
|
# vv Tests less than 60s vv
|
||||||
'bip9-softforks.py',
|
'feature_bip9_softforks.py',
|
||||||
'p2p-feefilter.py',
|
'p2p-feefilter.py',
|
||||||
'rpcbind_test.py',
|
'rpcbind_test.py',
|
||||||
# vv Tests less than 30s vv
|
# vv Tests less than 30s vv
|
||||||
'assumevalid.py',
|
'feature_assumevalid.py',
|
||||||
'example_test.py',
|
'example_test.py',
|
||||||
'txn_doublespend.py',
|
'txn_doublespend.py',
|
||||||
'txn_clone.py --mineblock',
|
'txn_clone.py --mineblock',
|
||||||
'notifications.py',
|
'feature_notifications.py',
|
||||||
'invalidateblock.py',
|
'invalidateblock.py',
|
||||||
'replace-by-fee.py',
|
'feature_rbf.py',
|
||||||
]
|
]
|
||||||
|
|
||||||
# Place EXTENDED_SCRIPTS first since it has the 3 longest running tests
|
# Place EXTENDED_SCRIPTS first since it has the 3 longest running tests
|
||||||
@ -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 = 77
|
EXPECTED_VIOLATION_COUNT = 60
|
||||||
|
|
||||||
# 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 New Issue
Block a user