diff options
| author | Vegard Nossum <[email protected]> | 2011-07-31 20:00:38 +0200 |
|---|---|---|
| committer | Gavin Andresen <[email protected]> | 2011-08-08 14:31:08 -0400 |
| commit | e707d29dd601bbe691175b72686caeaea29b1cbc (patch) | |
| tree | 81f0d487000519207776a75b9d679ee0f36aa41f /src/test/uint256_tests.cpp | |
| parent | Add missing include to serialize.h (diff) | |
| download | discoin-e707d29dd601bbe691175b72686caeaea29b1cbc.tar.xz discoin-e707d29dd601bbe691175b72686caeaea29b1cbc.zip | |
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
Diffstat (limited to 'src/test/uint256_tests.cpp')
| -rw-r--r-- | src/test/uint256_tests.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/test/uint256_tests.cpp b/src/test/uint256_tests.cpp index cbae9bf6d..f13b34944 100644 --- a/src/test/uint256_tests.cpp +++ b/src/test/uint256_tests.cpp @@ -1,3 +1,5 @@ +#include <boost/test/unit_test.hpp> + #include "../uint256.h" BOOST_AUTO_TEST_SUITE(uint256_tests) |