aboutsummaryrefslogtreecommitdiff
path: root/src/test
Commit message (Collapse)AuthorAgeFilesLines
* Merge #8883: Add all standard TXO types to bitcoin-txWladimir J. van der Laan2017-01-1223-0/+377
|\ | | | | | | | | | | | | 0c50909 testcases: explicitly specify transaction version 1 (John Newbery) b7e144b Add test cases to test new bitcoin-tx functionality (jnewbery) 61a1534 Add all transaction output types to bitcoin-tx. (jnewbery) 1814b08 add p2sh and segwit options to bitcoin-tx outscript command (Stanislas Marion)
| * testcases: explicitly specify transaction version 1John Newbery2017-01-091-22/+22
| |
| * Add test cases to test new bitcoin-tx functionalityjnewbery2016-12-2923-0/+377
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This commit add testcases to test the following functions in bitcoin-tx: - add a pay to non-standard script output - add a P2SH output - add a P2WSH output - add a P2WSH wrapped in a P2SH output - add a pay to pub key output - add a P2WPKH output - add a P2WPKH wrapped in a P2SH output - add a bare multisig output - add a multisig in P2SH output - add a multisig in a P2WSH output - add a multisig in a P2WSH wrapped in as P2SH output
* | Merge #9310: Assert FRESH validity in CCoinsViewCache::BatchWritePieter Wuille2017-01-091-11/+17
|\ \ | | | | | | | | | dd44ea3 Check FRESH validity in CCoinsViewCache::BatchWrite (Russell Yanofsky)
| * | Check FRESH validity in CCoinsViewCache::BatchWriteRussell Yanofsky2017-01-041-11/+17
| | |
* | | Merge #9138: Improve fee estimationPieter Wuille2017-01-053-8/+3
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 44b64b9 Fix edge case with stale fee estimates (Alex Morcos) 78ae62d Add clarifying comments to fee estimation (Alex Morcos) 5fe0f47 Add extra logging to processBlock in fee estimation. (Alex Morcos) dc008c4 Add IsCurrentForFeeEstimatation (Alex Morcos) ebafdca Pass pointers to existing CTxMemPoolEntries to fee estimation (Alex Morcos) d825838 Always update fee estimates on new blocks. (Alex Morcos) 6f06b26 rename bool to validFeeEstimate (Alex Morcos) 84f7ab0 Remove member variable hadNoDependencies from CTxMemPoolEntry (Alex Morcos) 60ac00d Don't track transactions at all during IBD. (Alex Morcos) 4df4479 Remove extraneous LogPrint from fee estimation (Alex Morcos)
| * | | Remove member variable hadNoDependencies from CTxMemPoolEntryAlex Morcos2017-01-043-8/+3
| | | | | | | | | | | | | | | | Fee estimation can just check its own mapMemPoolTxs to determine the same information. Note that now fee estimation for block processing must happen before those transactions are removed, but this shoudl be a speedup.
* | | | Merge #9281: Refactor: Remove using namespace <xxx> from bench/ & test/ sourcesMarcoFalke2017-01-0520-277/+236
|\ \ \ \ | | | | | | | | | | | | | | | 73f4119 Refactoring: Removed using namespace <xxx> from bench/ and test/ source files. (Karl-Johan Alm)
| * | | | Refactoring: Removed using namespace <xxx> from bench/ and test/ source files.Karl-Johan Alm2017-01-0220-277/+236
| | |_|/ | |/| |
* | | | Merge #9387: [Refactor] RAII of libevent stuff using unique ptrs with deletersWladimir J. van der Laan2017-01-051-0/+88
|\ \ \ \ | |_|_|/ |/| | | | | | | | | | | | | | | | | | | 05a55a6 Added EVENT_CFLAGS to test makefile to explicitly include libevent headers. (Karl-Johan Alm) 280a559 Added some simple tests for the RAII-style events. (Karl-Johan Alm) 7f7f102 Switched bitcoin-cli.cpp to use RAII unique pointers with deleters. (Karl-Johan Alm) e5534d2 Added std::unique_ptr<> wrappers with deleters for libevent modules. (Karl-Johan Alm)
| * | | Added some simple tests for the RAII-style events.Karl-Johan Alm2016-12-211-0/+88
| | | |
* | | | Merge #9107: Safer modify new coinsPieter Wuille2017-01-041-55/+144
|\ \ \ \ | |_|_|/ |/| | | | | | | b50cd7a Fix dangerous condition in ModifyNewCoins. (Alex Morcos)
| * | | Fix dangerous condition in ModifyNewCoins.Alex Morcos2017-01-041-55/+144
| | |/ | |/| | | | | | | | | | | | | | | | We were marking coins FRESH before being sure they were not overwriting dirty undo data. This condition was never reached in existing code because undo data was always flushed before UpdateCoins was called with new transactions, but could have been exposed in an otherwise safe refactor. Clarify in the comments the assumptions made in ModifyNewCoins. Add ability to undo transactions to UpdateCoins unit test. Thanks to Russ Yanofsky for suggestion on how to make logic clearer and fixing up the ccoins_modify_new test cases.
* | | Merge #9283: A few more CTransactionRef optimizationsWladimir J. van der Laan2017-01-044-30/+43
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | 91335ba Remove unused MakeTransactionRef overloads (Pieter Wuille) 6713f0f Make FillBlock consume txn_available to avoid shared_ptr copies (Pieter Wuille) 62607d7 Convert COrphanTx to keep a CTransactionRef (Pieter Wuille) c44e4c4 Make AcceptToMemoryPool take CTransactionRef (Pieter Wuille)
| * | | Make FillBlock consume txn_available to avoid shared_ptr copiesPieter Wuille2016-12-211-16/+29
| | | |
| * | | Convert COrphanTx to keep a CTransactionRefPieter Wuille2016-12-211-12/+12
| | | |
| * | | Make AcceptToMemoryPool take CTransactionRefPieter Wuille2016-12-212-2/+2
| | | |
* | | | Merge #9289: net: drop boost::thread_groupWladimir J. van der Laan2017-01-041-7/+13
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 67ee4ec net: misc header cleanups (Cory Fields) 8b3159e net: make proxy receives interruptible (Cory Fields) 5cb0fce net: remove thread_interrupted catch (Cory Fields) d3d7056 net: make net processing interruptible (Cory Fields) 0985052 net: make net interruptible (Cory Fields) 799df91 net: add CThreadInterrupt and InterruptibleSleep (Cory Fields) 7325b15 net: a few small cleanups before replacing boost threads (Cory Fields)
| * | | | net: make net processing interruptibleCory Fields2017-01-031-7/+13
| | |/ / | |/| |
* / | | Increment MIT Licence copyright header year on files modified in 2016isle29832016-12-3139-39/+39
|/ / / | | | | | | | | | | | | | | | Edited via: $ contrib/devtools/copyright_header.py update .
* | | Merge #9349: Make CScript (and prevector) c++11 movable.Pieter Wuille2016-12-271-1/+20
|\ \ \ | | | | | | | | | | | | 2ddfcfd Make CScript (and prevector) c++11 movable. (Pieter Wuille)
| * | | Make CScript (and prevector) c++11 movable.Pieter Wuille2016-12-211-1/+20
| |/ / | | | | | | | | | | | | Such moves are used when reallocating vectors that contain them, for example.
* | | Merge #9243: Clean up mapArgs and mapMultiArgs UsagePieter Wuille2016-12-273-6/+9
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | c2f61be Add a ForceSetArg method for testing (Matt Corallo) 4e04814 Lock mapArgs/mapMultiArgs access in util (Matt Corallo) 4cd373a Un-expose mapArgs from utils.h (Matt Corallo) 71fde55 Get rid of mapArgs direct access in ZMQ construction (Matt Corallo) 0cf86a6 Introduce (and use) an IsArgSet accessor method (Matt Corallo) 2b5f085 Fix non-const mapMultiArgs[] access after init. (Matt Corallo) c8042a4 Remove arguments to ParseConfigFile (Matt Corallo)
| * | | Add a ForceSetArg method for testingMatt Corallo2016-12-272-6/+4
| | | |
| * | | Un-expose mapArgs from utils.hMatt Corallo2016-12-243-0/+5
| | | |
| * | | Introduce (and use) an IsArgSet accessor methodMatt Corallo2016-12-231-2/+2
| | | |
| * | | Fix non-const mapMultiArgs[] access after init.Matt Corallo2016-12-231-1/+1
| | | | | | | | | | | | | | | | | | | | Swap mapMultiArgs for a const-reference to a _mapMultiArgs which is only accessed in util.cpp
* | | | Merge #9435: Removed unused variable in test, fixing warning.MarcoFalke2016-12-271-1/+0
|\ \ \ \ | |/ / / |/| | | | | | | 35356b4 Remove unused variable in test, fixing warning. (Russell Yanofsky)
| * | | Remove unused variable in test, fixing warning.Russell Yanofsky2016-12-271-1/+0
| |/ / | | | | | | | | | | | | Pointed out by Pavel Janík <[email protected]> in https://github.com/bitcoin/bitcoin/pull/9308.
* / / Re-enable a blank v1 Tx JSON testDouglas Roark2016-12-212-3/+8
|/ /
* | Merge #8589: Inline CTxInWitness inside CTxInWladimir J. van der Laan2016-12-213-36/+16
|\ \ | | | | | | | | | f6fb7ac Move CTxInWitness inside CTxIn (Pieter Wuille)
| * | Move CTxInWitness inside CTxInPieter Wuille2016-12-043-36/+16
| | |
* | | Merge #9308: [test] Add CCoinsViewCache Access/Modify/Write testsWladimir J. van der Laan2016-12-211-0/+364
|\ \ \ | | | | | | | | | | | | 07df40b [test] Add CCoinsViewCache Access/Modify/Write tests (Russell Yanofsky)
| * | | [test] Add CCoinsViewCache Access/Modify/Write testsRussell Yanofsky2016-12-051-0/+364
| | |/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | Add more comprehensive unit tests for CCoinsViewCache. Right now it is hard to refactor caching code or fix bugs in the caching logic because you have to try to mentally enumerate all the different states the cache might be in to make sure a change doesn't cause unintended consequences. The new tests explicitly enumerate relevant cache states, documenting and verifying the behavior in each state, so it will be safer and easier to make changes to the caching code in the future.
* | | Merge #9376: Remove unused test files and referencesWladimir J. van der Laan2016-12-211-33/+0
|\ \ \ | |/ / |/| | | | | | | | 9cb6624 Fix testfile reference (BtcDrak) 23208ac Remove unused test files and references (BtcDrak)
| * | Remove unused test files and referencesBtcDrak2016-12-191-33/+0
| | |
* | | Merge #9354: Make fuzzer actually test CTxOutCompressorWladimir J. van der Laan2016-12-191-2/+2
|\ \ \ | | | | | | | | | | | | 5dd626a Make fuzzer actually test CTxOutCompressor (Pieter Wuille)
| * | | Make fuzzer actually test CTxOutCompressorPieter Wuille2016-12-151-2/+2
| |/ /
* / / Uses built-in byte swap if available (Apple) and if bswap_XX is undefined.Karl-Johan Alm2016-12-171-0/+26
|/ / | | | | | | Defers to pre-defined version if found (e.g. protobuf). For protobuf case, the definitions are identical and thus include order should not affect results.
* | Merge #7562: Bump transaction version default to 2Wladimir J. van der Laan2016-12-1519-42/+113
|\ \ | | | | | | | | | | | | | | | | | | c5c92c4 Update python tests for default tx version=2 (BtcDrak) dab207e Preserve tx version=1 for certain tests (BtcDrak) c5d746a tiny test fix for mempool_tests (Alex Morcos) 1f0ca1a Bump default transaction version to 2 (BtcDrak)
| * | Update python tests for default tx version=2BtcDrak2016-12-0816-39/+96
| | |
| * | Preserve tx version=1 for certain testsBtcDrak2016-12-082-1/+6
| | | | | | | | | | | | | | | Without this change, the tests would be affected by default tx version increases.
| * | tiny test fix for mempool_testsAlex Morcos2016-12-081-2/+11
| | |
* | | Merge #9172: Resurrect pstratem's "Simple fuzzing framework"Wladimir J. van der Laan2016-12-151-0/+256
|\ \ \ | | | | | | | | | | | | | | | | 8b15434 doc: Add bare-bones documentation for fuzzing (Wladimir J. van der Laan) a4153e2 Simple fuzzing framework (Patrick Strateman)
| * | | Simple fuzzing frameworkPatrick Strateman2016-12-151-0/+256
| | | |
* | | | Merge #8895: Better SigCache ImplementationPieter Wuille2016-12-142-0/+396
|\ \ \ \ | |/ / / |/| | | | | | | | | | | 67dac4e Add unit tests for the CuckooCache (Jeremy Rubin) c9e69fb Add CuckooCache implementation and replace the sigcache map_type with it (Jeremy Rubin)
| * | | Add unit tests for the CuckooCacheJeremy Rubin2016-12-141-0/+394
| | | | | | | | | | | | | | | | SQUASHME: Update Tests for other SQUASHMEs
| * | | Add CuckooCache implementation and replace the sigcache map_type with itJeremy Rubin2016-12-141-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | SQUASHME: Change cuckoocache to only work for powers of two, to avoid mod operator SQUASHME: Update Documentation and simplify logarithm logic SQUASHME: OSX Build Errors SQUASHME: minor Feedback from sipa + bluematt SQUASHME: DOCONLY: Clarify a few comments.
* | | | Merge #9273: Remove unused CDiskBlockPos* argument from ProcessNewBlockWladimir J. van der Laan2016-12-142-2/+2
|\ \ \ \ | | | | | | | | | | | | | | | a13fa4c Remove unused CDiskBlockPos* argument from ProcessNewBlock (Matt Corallo)
| * | | | Remove unused CDiskBlockPos* argument from ProcessNewBlockMatt Corallo2016-12-042-2/+2
| | | | |