aboutsummaryrefslogtreecommitdiff
path: root/test/functional/feature_pruning.py
Commit message (Collapse)AuthorAgeFilesLines
* fixup: Fix prunning testJoão Barbosa2019-06-141-17/+4
| | | | | Github-Pull: #15991 Rebased-From: f402012ccfc596d7d94851dabbf386c278ff5335
* Correct units for "-dbcache" and "-prune"Hennadii Stepanov2019-01-301-1/+1
| | | | | | | | | All dbcache-related values in the code are measured in MiB (not in megabytes, MB) or in bytes. The GUI "-prune" values in GB are translated to the node values in MiB correctly. The maximum of the "-prune" QSpinBox is not limited by the default value of 99 (GB). Also, this improves log readability.
* Merge #15026: [test] Rename rpc_timewait to rpc_timeoutMarcoFalke2018-12-291-1/+1
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 4999992c34 whitespace: Split ~300 char line into multiple ones (MarcoFalke) fa71b38168 scripted-diff: Rename rpc_timewait to rpc_timeout (MarcoFalke) fa3e5786d0 scripted-diff: Remove unused 'split' parameter to setup_network (MarcoFalke) Pull request description: This is a bugfix, since wallet_dump currently uses the wrong name: https://github.com/bitcoin/bitcoin/blob/18857b4c4034af54e7ad3cbd78ff6f87f4f22567/test/functional/wallet_dump.py#L89-L92 Rename all to the same name with a scripted diff (and some unrelated cleanups). Tree-SHA512: 338ddd20dae12e6cf7aa7adbcfb239cf648017a1572b373f8431fecb184bd2a65492846d81e75a023864d9e41c94afb53044c16b79651a5937d34a5a6b772f81
| * scripted-diff: Rename rpc_timewait to rpc_timeoutMarcoFalke2018-12-221-1/+1
| | | | | | | | | | | | -BEGIN VERIFY SCRIPT- sed -i -e 's/self.rpc_timewait/self.rpc_timeout/g' $(git grep -l self.rpc_timewait) -END VERIFY SCRIPT-
* | test: pruning: Check that verifychain can be called when prunedMarcoFalke2018-12-111-0/+2
|/
* rpc: Correctly name argumentsJon Layton2018-11-131-1/+1
|
* [tests] Move deterministic address import to setup_nodesJohn Newbery2018-11-011-0/+2
| | | | | | This requires a small changes to a few tests, but means that deterministic addresses will always be imported (unless setup_nodes behaviour is explicitly overridden).
* qa: Run all tests even if wallet is not compiledMarcoFalke2018-09-101-7/+12
|
* tests: Use explicit importspracticalswift2018-08-131-1/+2
|
* Merge #13780: 0.17: Pre-branch maintenanceWladimir J. van der Laan2018-08-081-1/+1
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | 3fc20632a3ad30809356a58d2cf0ea4a4ad4cec3 qt: Set BLOCK_CHAIN_SIZE = 220 (DrahtBot) 2b6a2f4a28792f2fe9dc1be843b1ff1ecae35e8a Regenerate manpages (DrahtBot) eb7daf4d600eeb631427c018a984a77a34aca66e Update copyright headers to 2018 (DrahtBot) Pull request description: Some trivial maintenance to avoid having to do it again after the 0.17 branch off. (The scripts to do this are in `./contrib/`) Tree-SHA512: 16b2af45e0351b1c691c5311d48025dc6828079e98c2aa2e600dc5910ee8aa01858ca6c356538150dc46fe14c8819ed8ec8e4ec9a0f682b9950dd41bc50518fa
| * Update copyright headers to 2018DrahtBot2018-07-271-1/+1
| |
* | qa: Extract rpc_timewait as test paramMarcoFalke2018-08-011-1/+2
|/ | | | Also increase it for wallet_dump and wallet_groups
* expose CBlockIndex::nTx in getblock(header)Gregory Sanders2018-06-131-0/+7
|
* Remove Safe modeAndrew Chow2018-04-261-2/+2
|
* [Tests] Use blockmaxweight where tests previously had blockmaxsizeConor Scott2018-03-261-2/+2
|
* [config] Remove blockmaxsize optionJohn Newbery2018-03-221-5/+5
| | | | | | | | | | The blockmaxsize option was marked as deprecated in V0.15.1, and code was added to convert provided blockmaxsize into blockmaxweight. However, this code was incorrectly implemented, and blockmaxsize was silently ignored. No users have complained about blockmaxsize being ignored, so just remove it in V0.17.
* Merge #12076: qa: Use node.datadir instead of tmpdir in test frameworkWladimir J. van der Laan2018-03-221-1/+1
|\ | | | | | | | | | | | | | | | | | | | | | | c8330d4 qa: Use node.datadir instead of tmpdir in test framework (MarcoFalke) Pull request description: Commit c53c9831eedaf3b311bb942945268830f9ba3abc introduced the utility function `get_datadir_path`, however not all places in the code use this util function. Using the util function everywhere makes it easier to review pull requests related to the datadir. This commit replaces datadir path creation with the `datadir` member of `TestNode`, which itself uses `get_datadir_path`. Tree-SHA512: c75707ab7149d732a6d56152a5813138a33459d3d07577b60b89f2a207c83b7663fac5f203593677c9892d1c23a5eba4bd45c5c4ababf040d720b437240fcddf
| * qa: Use node.datadir instead of tmpdir in test frameworkMarcoFalke2018-03-191-1/+1
| |
* | Merge #12716: Fix typos and cleanup in various filesMarcoFalke2018-03-211-2/+2
|\ \ | |/ |/| | | | | | | | | | | | | | | 4d9b4256d8 Fix typos (Dimitris Apostolou) Pull request description: Unfortunately I messed up my repo while trying to squash #12593 so I created a PR with just the correct fixes. Tree-SHA512: 295d77b51bd2a9381f1802c263de7ffb2edd670d9647391e32f9a414705b3c8b483bb0e469a9b85ab6a70919ea13397fa8dfda2aea7a398b64b187f178fe6a06
| * Fix typosDimitris Apostolou2018-03-211-2/+2
| |
* | test: Use os.path.join consistently in feature_pruning testsBen Woosley2018-03-151-4/+4
| |
* | test: Use wait_until in tests where time was used for pollingBen Woosley2018-03-151-11/+4
|/
* [tests] Rename feature_* functional tests.Anthony Towns2018-01-251-0/+454