|
Boost : |
From: Mikhail Gusarov (mgusarov_at_[hidden])
Date: 2005-01-18 00:22:07
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_at_[hidden]
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";
}
Boost list run by bdawes at acm.org, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk