diff options
| author | Kazuki Ohta <kzk@il.is.s.u-tokyo.ac.jp> | 2010-01-21 21:55:06 +0900 |
|---|---|---|
| committer | Kazuki Ohta <kzk@il.is.s.u-tokyo.ac.jp> | 2010-01-21 21:55:06 +0900 |
| commit | 404a3933154dc57b2e650cdabb51f80e4aeb1dbe (patch) | |
| tree | 057b31acf321747ecd5ddd13ea8e6427d145f935 /cpp/test.cpp | |
| parent | c69092e110b82f4a6b37759a37cd43dbe8e486ed (diff) | |
| download | msgpack-python-404a3933154dc57b2e650cdabb51f80e4aeb1dbe.tar.gz | |
c, cpp: fix test problem
- using LDADD instead of LDFLAGS
- fix include path in test.cpp
Diffstat (limited to 'cpp/test.cpp')
| -rw-r--r-- | cpp/test.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/test.cpp b/cpp/test.cpp index b152e6d..113914a 100644 --- a/cpp/test.cpp +++ b/cpp/test.cpp @@ -438,7 +438,7 @@ TEST(MSGPACK_STL, simple_buffer_multiset) #ifdef HAVE_TR1_UNORDERED_MAP #include <tr1/unordered_map> -#include "cpp/type/tr1/unordered_map.hpp" +#include "cpp/msgpack/type/tr1/unordered_map.hpp" TEST(MSGPACK_TR1, simple_buffer_unordered_map) { for (unsigned int k = 0; k < kLoop; k++) { @@ -499,7 +499,7 @@ TEST(MSGPACK_TR1, simple_buffer_unordered_multimap) #ifdef HAVE_TR1_UNORDERED_SET #include <tr1/unordered_set> -#include "cpp/type/tr1/unordered_set.hpp" +#include "cpp/msgpack/type/tr1/unordered_set.hpp" TEST(MSGPACK_TR1, simple_buffer_unordered_set) { for (unsigned int k = 0; k < kLoop; k++) { |
