[PATCH] ill-formed XML in boost::unit_test result

Another XML well-formedness fix, this time in libs/test/src/unit_test_result.cpp (missing quotes around attribute values). -- Mikhail Gusarov ICQ UIN: 111575219 JID dottedmag@jabber.ru Index: unit_test_result.cpp =================================================================== RCS file: /cvsroot/boost/boost/libs/test/src/unit_test_result.cpp,v retrieving revision 1.31 diff -u -b -r1.31 unit_test_result.cpp --- unit_test_result.cpp 17 Sep 2004 12:34:13 -0000 1.31 +++ unit_test_result.cpp 18 Jan 2005 05:22:19 -0000 @@ -215,8 +215,8 @@ << " result"; print_attr_value( where_to, failed ? "failed" : "passed" ); if( failed ) - where_to << " num_of_failures=" << num_failed - << " expected_failures=" << num_expected; + where_to << " num_of_failures=\"" << num_failed << '"' << + << " expected_failures=\"" << num_expected << '"'; where_to << ">\n"; }
participants (1)
-
Mikhail Gusarov