Browse Source

[tests] Rename misc functional tests.

0.16
Anthony Towns 7 years ago
parent
commit
3150b3fea7
  1. 0
      test/functional/interface_bitcoin_cli.py
  2. 0
      test/functional/interface_http.py
  3. 0
      test/functional/interface_rest.py
  4. 0
      test/functional/interface_zmq.py
  5. 0
      test/functional/mempool_resurrect.py
  6. 0
      test/functional/mempool_spend_coinbase.py
  7. 0
      test/functional/mining_basic.py
  8. 0
      test/functional/mining_getblocktemplate_longpoll.py
  9. 0
      test/functional/mining_prioritisetransaction.py
  10. 20
      test/functional/test_runner.py

0
test/functional/bitcoin_cli.py → test/functional/interface_bitcoin_cli.py

0
test/functional/httpbasics.py → test/functional/interface_http.py

0
test/functional/rest.py → test/functional/interface_rest.py

0
test/functional/zmq_test.py → test/functional/interface_zmq.py

0
test/functional/mempool_resurrect_test.py → test/functional/mempool_resurrect.py

0
test/functional/mempool_spendcoinbase.py → test/functional/mempool_spend_coinbase.py

0
test/functional/mining.py → test/functional/mining_basic.py

0
test/functional/getblocktemplate_longpoll.py → test/functional/mining_getblocktemplate_longpoll.py

0
test/functional/prioritise_transaction.py → test/functional/mining_prioritisetransaction.py

20
test/functional/test_runner.py

@ -82,20 +82,20 @@ BASE_SCRIPTS= [
'feature_reindex.py', 'feature_reindex.py',
# vv Tests less than 30s vv # vv Tests less than 30s vv
'wallet_keypool_topup.py', 'wallet_keypool_topup.py',
'zmq_test.py', 'interface_zmq.py',
'bitcoin_cli.py', 'interface_bitcoin_cli.py',
'mempool_resurrect_test.py', 'mempool_resurrect.py',
'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',
'rpc_getchaintips.py', 'rpc_getchaintips.py',
'rest.py', 'interface_rest.py',
'mempool_spendcoinbase.py', 'mempool_spend_coinbase.py',
'mempool_reorg.py', 'mempool_reorg.py',
'mempool_persist.py', 'mempool_persist.py',
'wallet_multiwallet.py', 'wallet_multiwallet.py',
'wallet_multiwallet.py --usecli', 'wallet_multiwallet.py --usecli',
'httpbasics.py', 'interface_http.py',
'rpc_users.py', 'rpc_users.py',
'feature_proxy.py', 'feature_proxy.py',
'rpc_signrawtransaction.py', 'rpc_signrawtransaction.py',
@ -107,7 +107,7 @@ BASE_SCRIPTS= [
'rpc_net.py', 'rpc_net.py',
'wallet_keypool.py', 'wallet_keypool.py',
'p2p_mempool.py', 'p2p_mempool.py',
'prioritise_transaction.py', 'mining_prioritisetransaction.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',
@ -116,7 +116,7 @@ BASE_SCRIPTS= [
'rpc_signmessage.py', 'rpc_signmessage.py',
'feature_nulldummy.py', 'feature_nulldummy.py',
'wallet_import_rescan.py', 'wallet_import_rescan.py',
'mining.py', 'mining_basic.py',
'wallet_bumpfee.py', 'wallet_bumpfee.py',
'rpc_named_arguments.py', 'rpc_named_arguments.py',
'wallet_listsinceblock.py', 'wallet_listsinceblock.py',
@ -149,7 +149,7 @@ EXTENDED_SCRIPTS = [
'feature_dbcrash.py', 'feature_dbcrash.py',
# vv Tests less than 2m vv # vv Tests less than 2m vv
'feature_bip68_sequence.py', 'feature_bip68_sequence.py',
'getblocktemplate_longpoll.py', 'mining_getblocktemplate_longpoll.py',
'p2p_timeouts.py', 'p2p_timeouts.py',
# vv Tests less than 60s vv # vv Tests less than 60s vv
'feature_bip9_softforks.py', 'feature_bip9_softforks.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 = 7 EXPECTED_VIOLATION_COUNT = 0
# 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…
Cancel
Save