diff options
author | Vegard Nossum <vegard.nossum@gmail.com> | 2011-07-31 20:00:38 +0200 |
---|---|---|
committer | Gavin Andresen <gavinandresen@gmail.com> | 2011-08-08 14:31:08 -0400 |
commit | e707d29dd601bbe691175b72686caeaea29b1cbc (patch) | |
tree | 81f0d487000519207776a75b9d679ee0f36aa41f /src/test/uint256_tests.cpp | |
parent | 02962ba848d1f7d58fe0f12a783400fc15e7260b (diff) |
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 cbae9bf6d2..f13b34944c 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) |