Browse Source

[tests] Rename wallet_* functional tests.

0.16
Anthony Towns 7 years ago
parent
commit
90600bc7db
  1. 54
      test/functional/test_runner.py
  2. 0
      test/functional/wallet_abandonconflict.py
  3. 0
      test/functional/wallet_accounts.py
  4. 0
      test/functional/wallet_address_types.py
  5. 0
      test/functional/wallet_backup.py
  6. 0
      test/functional/wallet_basic.py
  7. 0
      test/functional/wallet_bumpfee.py
  8. 0
      test/functional/wallet_disable.py
  9. 0
      test/functional/wallet_dump.py
  10. 0
      test/functional/wallet_encryption.py
  11. 0
      test/functional/wallet_hd.py
  12. 0
      test/functional/wallet_import_rescan.py
  13. 0
      test/functional/wallet_importmulti.py
  14. 0
      test/functional/wallet_importprunedfunds.py
  15. 0
      test/functional/wallet_keypool.py
  16. 0
      test/functional/wallet_keypool_topup.py
  17. 0
      test/functional/wallet_listreceivedby.py
  18. 0
      test/functional/wallet_listsinceblock.py
  19. 0
      test/functional/wallet_multiwallet.py
  20. 0
      test/functional/wallet_resendwallettransactions.py
  21. 0
      test/functional/wallet_txn_clone.py
  22. 0
      test/functional/wallet_txn_doublespend.py
  23. 0
      test/functional/wallet_zapwallettxes.py

54
test/functional/test_runner.py

@ -55,46 +55,46 @@ TEST_EXIT_SKIPPED = 77 @@ -55,46 +55,46 @@ TEST_EXIT_SKIPPED = 77
BASE_SCRIPTS= [
# Scripts that are run by the travis build process.
# Longest test should go first, to favor running tests in parallel
'wallet-hd.py',
'walletbackup.py',
'wallet_hd.py',
'wallet_backup.py',
# vv Tests less than 5m vv
'feature_block.py',
'fundrawtransaction.py',
'p2p-compactblocks.py',
'feature_segwit.py',
# vv Tests less than 2m vv
'wallet.py',
'wallet-accounts.py',
'wallet_basic.py',
'wallet_accounts.py',
'p2p-segwit.py',
'wallet-dump.py',
'wallet_dump.py',
'listtransactions.py',
# vv Tests less than 60s vv
'sendheaders.py',
'zapwallettxes.py',
'importmulti.py',
'wallet_zapwallettxes.py',
'wallet_importmulti.py',
'mempool_limit.py',
'merkle_blocks.py',
'receivedby.py',
'abandonconflict.py',
'wallet_listreceivedby.py',
'wallet_abandonconflict.py',
'feature_csv_activation.py',
'rawtransactions.py',
'address_types.py',
'wallet_address_types.py',
'feature_reindex.py',
# vv Tests less than 30s vv
'keypool-topup.py',
'wallet_keypool_topup.py',
'zmq_test.py',
'bitcoin_cli.py',
'mempool_resurrect_test.py',
'txn_doublespend.py --mineblock',
'txn_clone.py',
'txn_clone.py --segwit',
'wallet_txn_doublespend.py --mineblock',
'wallet_txn_clone.py',
'wallet_txn_clone.py --segwit',
'getchaintips.py',
'rest.py',
'mempool_spendcoinbase.py',
'mempool_reorg.py',
'mempool_persist.py',
'multiwallet.py',
'multiwallet.py --usecli',
'wallet_multiwallet.py',
'wallet_multiwallet.py --usecli',
'httpbasics.py',
'multi_rpc.py',
'feature_proxy.py',
@ -103,29 +103,29 @@ BASE_SCRIPTS= [ @@ -103,29 +103,29 @@ BASE_SCRIPTS= [
'decodescript.py',
'blockchain.py',
'deprecated_rpc.py',
'disablewallet.py',
'wallet_disable.py',
'net.py',
'keypool.py',
'wallet_keypool.py',
'p2p-mempool.py',
'prioritise_transaction.py',
'invalidblockrequest.py',
'invalidtxrequest.py',
'feature_versionbits_warning.py',
'preciousblock.py',
'importprunedfunds.py',
'wallet_importprunedfunds.py',
'signmessages.py',
'feature_nulldummy.py',
'import-rescan.py',
'wallet_import_rescan.py',
'mining.py',
'bumpfee.py',
'wallet_bumpfee.py',
'rpcnamedargs.py',
'listsinceblock.py',
'wallet_listsinceblock.py',
'p2p-leaktests.py',
'wallet-encryption.py',
'wallet_encryption.py',
'feature_dersig.py',
'feature_cltv.py',
'uptime.py',
'resendwallettransactions.py',
'wallet_resendwallettransactions.py',
'feature_minchainwork.py',
'p2p-fingerprint.py',
'feature_uacomment.py',
@ -158,8 +158,8 @@ EXTENDED_SCRIPTS = [ @@ -158,8 +158,8 @@ EXTENDED_SCRIPTS = [
# vv Tests less than 30s vv
'feature_assumevalid.py',
'example_test.py',
'txn_doublespend.py',
'txn_clone.py --mineblock',
'wallet_txn_doublespend.py',
'wallet_txn_clone.py --mineblock',
'feature_notifications.py',
'invalidateblock.py',
'feature_rbf.py',
@ -474,7 +474,7 @@ class TestResult(): @@ -474,7 +474,7 @@ class TestResult():
def check_script_prefixes():
"""Check that no more than `EXPECTED_VIOLATION_COUNT` of the
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
# that introduce new tests that don't conform with the naming

0
test/functional/abandonconflict.py → test/functional/wallet_abandonconflict.py

0
test/functional/wallet-accounts.py → test/functional/wallet_accounts.py

0
test/functional/address_types.py → test/functional/wallet_address_types.py

0
test/functional/walletbackup.py → test/functional/wallet_backup.py

0
test/functional/wallet.py → test/functional/wallet_basic.py

0
test/functional/bumpfee.py → test/functional/wallet_bumpfee.py

0
test/functional/disablewallet.py → test/functional/wallet_disable.py

0
test/functional/wallet-dump.py → test/functional/wallet_dump.py

0
test/functional/wallet-encryption.py → test/functional/wallet_encryption.py

0
test/functional/wallet-hd.py → test/functional/wallet_hd.py

0
test/functional/import-rescan.py → test/functional/wallet_import_rescan.py

0
test/functional/importmulti.py → test/functional/wallet_importmulti.py

0
test/functional/importprunedfunds.py → test/functional/wallet_importprunedfunds.py

0
test/functional/keypool.py → test/functional/wallet_keypool.py

0
test/functional/keypool-topup.py → test/functional/wallet_keypool_topup.py

0
test/functional/receivedby.py → test/functional/wallet_listreceivedby.py

0
test/functional/listsinceblock.py → test/functional/wallet_listsinceblock.py

0
test/functional/multiwallet.py → test/functional/wallet_multiwallet.py

0
test/functional/resendwallettransactions.py → test/functional/wallet_resendwallettransactions.py

0
test/functional/txn_clone.py → test/functional/wallet_txn_clone.py

0
test/functional/txn_doublespend.py → test/functional/wallet_txn_doublespend.py

0
test/functional/zapwallettxes.py → test/functional/wallet_zapwallettxes.py

Loading…
Cancel
Save