]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/boost/test/impl/junit_log_formatter.ipp
update sources to ceph Nautilus 14.2.1
[ceph.git] / ceph / src / boost / boost / test / impl / junit_log_formatter.ipp
index 0ec8d43832c557d418b9aeeabc3e18fbfd6453ca..e82e2bd1b026029e5f25312578385ee5c362ec78 100644 (file)
@@ -431,13 +431,13 @@ public:
             if(m_display_build_info)
             {
                 m_stream  << "<properties>" << std::endl;
-                m_stream  << "<property name=\"platform\" value" << utils::attr_value() << BOOST_PLATFORM << std::endl;
-                m_stream  << "<property name=\"compiler\" value" << utils::attr_value() << BOOST_COMPILER << std::endl;
-                m_stream  << "<property name=\"stl\" value" << utils::attr_value() << BOOST_STDLIB << std::endl;
+                m_stream  << "<property name=\"platform\" value" << utils::attr_value() << BOOST_PLATFORM << " />" << std::endl;
+                m_stream  << "<property name=\"compiler\" value" << utils::attr_value() << BOOST_COMPILER << " />" << std::endl;
+                m_stream  << "<property name=\"stl\" value" << utils::attr_value() << BOOST_STDLIB << " />" << std::endl;
 
                 std::ostringstream o;
                 o << BOOST_VERSION/100000 << "." << BOOST_VERSION/100 % 1000 << "." << BOOST_VERSION % 100;
-                m_stream  << "<property name=\"boost\" value" << utils::attr_value() << o.str() << std::endl;
+                m_stream  << "<property name=\"boost\" value" << utils::attr_value() << o.str() << " />" << std::endl;
                 m_stream  << "</properties>" << std::endl;
             }
         }
@@ -646,7 +646,7 @@ junit_log_formatter::log_entry_start( std::ostream& /*ostr*/, log_entry_data con
           last_entry.skipping = true;
           break;
         }
-        // no break on purpose
+        BOOST_FALLTHROUGH;
       }
       case unit_test_log_formatter::BOOST_UTL_ET_MESSAGE:
       {
@@ -654,7 +654,7 @@ junit_log_formatter::log_entry_start( std::ostream& /*ostr*/, log_entry_data con
           last_entry.skipping = true;
           break;
         }
-        // no break on purpose
+        BOOST_FALLTHROUGH;
       }
       case unit_test_log_formatter::BOOST_UTL_ET_WARNING:
       {