dogecoin/qa/rpc-tests
Gavin Andresen a16ad1c0f4 Merge pull request #3704 from gavinandresen/wallet_lock_fixes
Wallet locking fixes for -DDEBUG_LOCKORDER
2014-02-24 14:39:23 -05:00
..
README.md Test for walletbackup/walletdump RPC calls 2014-02-24 12:58:40 -05:00
send.sh Make qa/rpc-tests/ compatible with OSX 2014-02-13 14:25:38 -05:00
txnmall.sh Wallet locking fixes for -DDEBUG_LOCKORDER 2014-02-18 12:11:46 -05:00
util.sh Make qa/rpc-tests/ compatible with OSX 2014-02-13 14:25:38 -05:00
wallet.sh qt5: fix --with-qt with no arguments 2014-01-10 16:30:33 -05:00
walletbackup.sh Test for walletbackup/walletdump RPC calls 2014-02-24 12:58:40 -05:00

Regression tests of RPC interface

wallet.sh : Exercise wallet send/receive code.

walletbackup.sh : Exercise wallet backup / dump / import

txnmall.sh : Test proper accounting of malleable transactions

conflictedbalance.sh : More testing of malleable transaction handling

util.sh : useful re-usable bash functions

Tips for creating new tests

To cleanup after a failed or interrupted test: killall bitcoind rm -rf test.*

The most difficult part of writing reproducible tests is keeping multiple nodes in sync. See WaitBlocks, WaitPeers, and WaitMemPools for how other tests deal with this.