diff options
author | Andrew Stitcher <astitcher@apache.org> | 2008-04-17 21:46:22 +0000 |
---|---|---|
committer | Andrew Stitcher <astitcher@apache.org> | 2008-04-17 21:46:22 +0000 |
commit | 1b4a961ec807e5e61cd232b08020a935a4f76f4c (patch) | |
tree | a696732d72bd36cac2f8d6dff7d41debf3fb89c0 /qpid/cpp/src/tests/Blob.cpp | |
parent | f89c4bab5b5414796ca104d9a9a6c7fc138e10cd (diff) | |
download | qpid-python-1b4a961ec807e5e61cd232b08020a935a4f76f4c.tar.gz |
Patch for improved compatibility with gcc 3.4 and boost 1.33
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@649294 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src/tests/Blob.cpp')
-rw-r--r-- | qpid/cpp/src/tests/Blob.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/qpid/cpp/src/tests/Blob.cpp b/qpid/cpp/src/tests/Blob.cpp index d27c0bbd85..c40e43b96e 100644 --- a/qpid/cpp/src/tests/Blob.cpp +++ b/qpid/cpp/src/tests/Blob.cpp @@ -54,7 +54,7 @@ struct Bar : public Count<Bar> { Bar(int n) : Count<Bar>(n) {}; }; typedef Blob<sizeof(Foo), Base> TestBlob ; -BOOST_AUTO_TEST_CASE(testCtor) { +QPID_AUTO_TEST_CASE(testBlobCtor) { { TestBlob empty; BOOST_CHECK(empty.empty()); @@ -79,7 +79,7 @@ BOOST_AUTO_TEST_CASE(testCtor) { } -BOOST_AUTO_TEST_CASE(testAssign) { +QPID_AUTO_TEST_CASE(testAssign) { { TestBlob b; b = Foo(2); @@ -109,7 +109,7 @@ BOOST_AUTO_TEST_CASE(testAssign) { } -BOOST_AUTO_TEST_CASE(testClear) { +QPID_AUTO_TEST_CASE(testClear) { TestBlob b(in_place<Foo>(5)); TestBlob c(b); BOOST_CHECK(!c.empty()); |