2011-08-02 11:34:23 -04:00
|
|
|
#define BOOST_TEST_MODULE Bitcoin Test Suite
|
2011-06-27 14:05:02 -04:00
|
|
|
#include <boost/test/unit_test.hpp>
|
|
|
|
|
2011-07-31 14:00:38 -04:00
|
|
|
#include "../main.h"
|
|
|
|
#include "../wallet.h"
|
|
|
|
|
2011-06-27 14:05:02 -04:00
|
|
|
#include "uint160_tests.cpp"
|
|
|
|
#include "uint256_tests.cpp"
|
2011-07-31 14:01:31 -04:00
|
|
|
#include "script_tests.cpp"
|
2011-07-31 14:07:53 -04:00
|
|
|
#include "transaction_tests.cpp"
|
2011-09-06 17:09:04 -03:00
|
|
|
#include "DoS_tests.cpp"
|
2011-09-27 14:46:57 -03:00
|
|
|
#include "base64_tests.cpp"
|
2011-07-31 14:00:38 -04:00
|
|
|
|
|
|
|
CWallet* pwalletMain;
|
|
|
|
|
|
|
|
void Shutdown(void* parg)
|
|
|
|
{
|
|
|
|
exit(0);
|
|
|
|
}
|