Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-09-30 | Merge #8841: [qa] fix nulldummy test | Wladimir J. van der Laan | |
46a4774 Fix nulldummy.py test (Johnson Lau) | |||
2016-09-30 | Fix nulldummy.py test | Johnson Lau | |
2016-09-29 | Merge #8834: [qa] blockstore: Switch to dumb dbm | Wladimir J. van der Laan | |
fa9cd25 [qa] blockstore: Switch to dumb dbm (MarcoFalke) | |||
2016-09-29 | Merge #8835: [qa] nulldummy.py: Don't run unused code | Wladimir J. van der Laan | |
fa156c6 [qa] nulldummy: Don't run unused code (MarcoFalke) | |||
2016-09-29 | [qa] nulldummy: Don't run unused code | MarcoFalke | |
2016-09-29 | Merge #8827: [qa] Split up slow RPC calls to avoid pruning test timeouts | MarcoFalke | |
a0f8482 [qa] Split up slow RPC calls to avoid pruning test timeouts (Suhas Daftuar) | |||
2016-09-29 | [qa] blockstore: Switch to dumb dbm | MarcoFalke | |
2016-09-28 | [qa] Split up slow RPC calls to avoid pruning test timeouts | Suhas Daftuar | |
2016-09-27 | Merge #8810: tests: Add exception error message for JSONRPCException | Wladimir J. van der Laan | |
42f6aed tests: Add exception error message for JSONRPCException (Wladimir J. van der Laan) | |||
2016-09-27 | Merge #8803: Ping regularly in p2p-segwit.py to keep connection alive | Wladimir J. van der Laan | |
0637b02 Ping regularly in p2p-segwit.py to keep connection alive (Johnson Lau) | |||
2016-09-26 | Merge #8780: [rpc] Deprecate getinfo | Wladimir J. van der Laan | |
fa6e71b [qa] Add getinfo smoke tests and rework versionbits test (MarcoFalke) ddddaaf [rpc] Deprecate getinfo (MarcoFalke) | |||
2016-09-25 | tests: Add exception error message for JSONRPCException | Wladimir J. van der Laan | |
This improves error reporting if `JSONRPCException` is not specifically caught and ends up in Python's default backtrace handler. Before: ``` Traceback (most recent call last): File "/.../projects/bitcoin/bitcoin/qa/rpc-tests/test_framework/authproxy.py", line 153, in __call__ raise JSONRPCException(response['error']) test_framework.authproxy.JSONRPCException ``` After: ``` Traceback (most recent call last): File "/.../projects/bitcoin/bitcoin/qa/rpc-tests/test_framework/authproxy.py", line 152, in __call__ raise JSONRPCException(response['error']) test_framework.authproxy.JSONRPCException: Unknown named parameter random (-8) ``` | |||
2016-09-25 | Ping regularly in p2p-segwit.py to keep connection alive | Johnson Lau | |
This pings regularly while building a big block in p2p-segwit.py, to prevent timeout | |||
2016-09-25 | [qa] Add getinfo smoke tests and rework versionbits test | MarcoFalke | |
2016-09-22 | Merge #8636: Implement NULLDUMMY softfork (BIP147) | Wladimir J. van der Laan | |
482f852 Implement NULLDUMMY softfork (Johnson Lau) | |||
2016-09-21 | [rpc] Deprecate getinfo | MarcoFalke | |
This was replaced by getmininginfo, getnetworkinfo and getwalletinfo | |||
2016-09-20 | Merge #8739: [qa] Fix broken sendcmpct test in p2p-compactblocks.py | Wladimir J. van der Laan | |
157254a Fix broken sendcmpct test in p2p-compactblocks.py (Suhas Daftuar) | |||
2016-09-19 | Merge #8676: Add missing copyright headers | Wladimir J. van der Laan | |
783e930 [copyright] Add missing copyright headers (isle2983) | |||
2016-09-19 | Merge #8716: [qa] wallet: Check legacy wallet as well | Wladimir J. van der Laan | |
fa644d0 [qa] wallet: Check legacy wallet as well (MarcoFalke) | |||
2016-09-19 | Merge #8724: [qa] walletbackup: Sync blocks inside the loop | MarcoFalke | |
fad41f3 [qa] walletbackup: Sync blocks inside the loop (MarcoFalke) | |||
2016-09-15 | Fix broken sendcmpct test in p2p-compactblocks.py | Suhas Daftuar | |
Python lambda use was incorrect. sendcmpct messages need to be synchronized with RPC calls to generate(). Headers need to be synced (eg with getheaders) for cmpctblock announcements to start. Last test omitted sending a sendcmpct message. | |||
2016-09-14 | [qa] walletbackup: Sync blocks inside the loop | MarcoFalke | |
2016-09-14 | [qa] wallet: Check legacy wallet as well | MarcoFalke | |
2016-09-13 | [qa] create_cache: Delete temp dir when done | MarcoFalke | |
2016-09-13 | Merge #8652: [qa]: remove root test directory for RPC tests | MarcoFalke | |
c62cc4e fix path for bak file (whythat) 438e94d remove root test directory for RPC tests (whythat) | |||
2016-09-13 | Merge #8528: Update p2p-segwit.py to reflect correct behavior | Wladimir J. van der Laan | |
5547aeb p2psegwit.py transaction is rejected due to premature witness not size (instagibbs) bc1d1f2 Update p2p-segwit.py to reflect correct AskFor behavior (instagibbs) | |||
2016-09-11 | [copyright] Add missing copyright headers | isle2983 | |
2016-09-09 | Merge #8667: Fix SIGHASH_SINGLE bug in test_framework SignatureHash | MarcoFalke | |
2f2548d Fix SIGHASH_SINGLE bug in test_framework SignatureHash (Johnson Lau) | |||
2016-09-09 | Merge #8680: Address Travis spurious failures | Wladimir J. van der Laan | |
d6a5dc4 add waitfornewblock/waitforblock/waitforblockheight rpcs and use them for tests (Cory Fields) | |||
2016-09-07 | add waitfornewblock/waitforblock/waitforblockheight rpcs and use them for tests | Cory Fields | |
waitfornewblock waits until a new block is received, or the timeout expires, then returns the current block height/hash. waitforblock waits for a specific blockhash, or until the timeout expires, then returns the current block height/hash. If the target blockhash is the current tip, it will return immediately. waitforblockheight waits until the tip has reached a certain height or higher, then returns the current height and hash. waitforblockheight is used to avoid polling in the rpc tests. | |||
2016-09-06 | Fix SIGHASH_SINGLE bug in test_framework SignatureHash | Johnson Lau | |
The value for "other" inputs should be -1 (0xffffffffffffffff) instead of 0 | |||
2016-09-05 | Add basic test for IsStandard witness transaction blinding | instagibbs | |
2016-09-05 | fix path for bak file | whythat | |
2016-09-05 | remove root test directory for RPC tests | whythat | |
2016-09-01 | rest.cpp: change HTTP_INTERNAL_SERVER_ERROR to HTTP_BAD_REQUEST | djpnewton | |
2016-08-31 | Implement NULLDUMMY softfork | Johnson Lau | |
2016-08-24 | [wallet] rpc: Drop misleading option | MarcoFalke | |
2016-08-24 | Merge #8450: [Test] Replace rpc_wallet_tests.cpp with python RPC unit tests | Wladimir J. van der Laan | |
9578333 Remove rpc_wallet_tests.cpp (Patrick Strateman) 25400c4 Account wallet feature RPC tests. (Patrick Strateman) | |||
2016-08-19 | [qa] Remove unused code | MarcoFalke | |
2016-08-18 | p2psegwit.py transaction is rejected due to premature witness not size | instagibbs | |
2016-08-18 | Revert "[qa] Adjust timeouts for micro-optimization of run time" | Wladimir J. van der Laan | |
This reverts commit fa2d68f79c459b505652728c3d8da60679f98ae3. Temporary revert - see discussion in #8532. | |||
2016-08-18 | Merge #8531: [qa] abandonconflict: Use assert_equal | Wladimir J. van der Laan | |
fa64306 [qa] abandonconflict: Use assert_equal (MarcoFalke) | |||
2016-08-17 | [qa] abandonconflict: Use assert_equal | MarcoFalke | |
2016-08-17 | Merge #8482: [qa] Use single cache dir for chains | Wladimir J. van der Laan | |
fad8cf6 [qa] Use single cache dir for chains (MarcoFalke) fa2d68f [qa] Adjust timeouts for micro-optimization of run time (MarcoFalke) fae596f [qa] Sort scripts by time for pull_tester and don't overwrite setup_chain (MarcoFalke) | |||
2016-08-16 | Update p2p-segwit.py to reflect correct AskFor behavior | instagibbs | |
2016-08-16 | qa: Remove duplicate `hash160` implementation | Wladimir J. van der Laan | |
`hash160` is defined in `test_framework.script`, so there is no need to define it here again. | |||
2016-08-08 | qa/rpc-tests/segwit: Test GBT sigops before and after activation | Luke Dashjr | |
2016-08-07 | Account wallet feature RPC tests. | Patrick Strateman | |
2016-08-07 | [qa] Use single cache dir for chains | MarcoFalke | |
2016-08-07 | [qa] Adjust timeouts for micro-optimization of run time | MarcoFalke | |