diff options
author | Alan Conway <aconway@apache.org> | 2007-11-28 17:13:28 +0000 |
---|---|---|
committer | Alan Conway <aconway@apache.org> | 2007-11-28 17:13:28 +0000 |
commit | acd260bce099be36b879826a0921daf9cb2fe140 (patch) | |
tree | 7f1c708dafa7a1399b62ef9316550b17d19ace3d /qpid/cpp/src/tests/Serializer.cpp | |
parent | e427d74267a1a11238425fc540ab84cde2474a3e (diff) | |
download | qpid-python-acd260bce099be36b879826a0921daf9cb2fe140.tar.gz |
Fixed to build with boost 1.34 as well as boost 1.33
- boost::ptr_map API changed.
- Boost.Test unit test framework changes.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@599067 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src/tests/Serializer.cpp')
-rw-r--r-- | qpid/cpp/src/tests/Serializer.cpp | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/qpid/cpp/src/tests/Serializer.cpp b/qpid/cpp/src/tests/Serializer.cpp index 0d52eef711..51b739218d 100644 --- a/qpid/cpp/src/tests/Serializer.cpp +++ b/qpid/cpp/src/tests/Serializer.cpp @@ -26,13 +26,15 @@ #include <boost/bind.hpp> #include <boost/utility/value_init.hpp> -#include <boost/test/auto_unit_test.hpp> -BOOST_AUTO_TEST_SUITE(Serializer); +#include "unit_test.h" #include <set> #include <unistd.h> +QPID_AUTO_TEST_SUITE(SerializerTestSuite) + + using namespace qpid; using namespace qpid::sys; using namespace qpid::framing; @@ -152,4 +154,4 @@ BOOST_AUTO_TEST_CASE(testExternalDispatch) { BOOST_CHECK(Thread::logId() != *tester.threads.begin()); } -BOOST_AUTO_TEST_SUITE_END(); +QPID_AUTO_TEST_SUITE_END() |