0
0
Fork 0
mirror of https://github.com/bitcoin/bitcoin.git synced 2025-02-05 10:17:30 -05:00
bitcoin-bitcoin-core/src/test/test_bitcoin.cpp
Vegard Nossum e707d29dd6 Fix testing setup
There were some problems with the existing testing setup:

 - Makefile rules for test-file compilation used CFLAGS instead of
   CXXFLAGS in makefile.unix
2011-08-08 14:31:08 -04:00

16 lines
239 B
C++

#define BOOST_TEST_MODULE uint160
#include <boost/test/unit_test.hpp>
#include "../main.h"
#include "../wallet.h"
#include "uint160_tests.cpp"
#include "uint256_tests.cpp"
CWallet* pwalletMain;
void Shutdown(void* parg)
{
exit(0);
}