You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by ac...@apache.org on 2015/03/05 21:44:50 UTC

svn commit: r1664479 - /qpid/trunk/qpid/cpp/src/tests/Variant.cpp

Author: aconway
Date: Thu Mar  5 20:44:49 2015
New Revision: 1664479

URL: http://svn.apache.org/r1664479
Log:
QPID-6427: Fixed unit test build problem on RHEL 5.

RHEL5 compiler choked on some boost template magic, simplified the test.

Modified:
    qpid/trunk/qpid/cpp/src/tests/Variant.cpp

Modified: qpid/trunk/qpid/cpp/src/tests/Variant.cpp
URL: http://svn.apache.org/viewvc/qpid/trunk/qpid/cpp/src/tests/Variant.cpp?rev=1664479&r1=1664478&r2=1664479&view=diff
==============================================================================
--- qpid/trunk/qpid/cpp/src/tests/Variant.cpp (original)
+++ qpid/trunk/qpid/cpp/src/tests/Variant.cpp Thu Mar  5 20:44:49 2015
@@ -815,12 +815,16 @@ QPID_AUTO_TEST_CASE(described)
     BOOST_CHECK(!a.isDescribed());
     a.getDescriptors().push_back("foo");
     BOOST_CHECK(a.isDescribed());
-    BOOST_CHECK_EQUAL(a.getDescriptors(), list_of<Variant>("foo"));
+    BOOST_CHECK_EQUAL(a.getDescriptors().size(), 1U);
+    BOOST_CHECK_EQUAL(a.getDescriptors().front(), Variant("foo"));
     a = 42;
     BOOST_CHECK(a.isDescribed());
-    BOOST_CHECK_EQUAL(a.getDescriptors(), list_of<Variant>("foo"));
+    BOOST_CHECK_EQUAL(a.getDescriptors().size(), 1U);
+    BOOST_CHECK_EQUAL(a.getDescriptors().front(), Variant("foo"));
     a.getDescriptors().push_back(33);
-    BOOST_CHECK_EQUAL(a.getDescriptors(), list_of<Variant>("foo")(33));
+    BOOST_CHECK_EQUAL(a.getDescriptors().size(), 2U);
+    BOOST_CHECK_EQUAL(a.getDescriptors().front(), Variant("foo"));
+    BOOST_CHECK_EQUAL(*(++a.getDescriptors().begin()), Variant(33));
     a.getDescriptors().clear();
     BOOST_CHECK(!a.isDescribed());
 }



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org
For additional commands, e-mail: commits-help@qpid.apache.org