Boost logo

Boost :

From: SourceForge.net (noreply_at_[hidden])
Date: 2005-03-31 04:21:47


Bugs item #1173937, was opened at 2005-03-31 01:21
Message generated for change (Tracker Item Submitted) made by Item Submitter
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=107586&aid=1173937&group_id=7586

Category: test
Group: None
Status: Open
Resolution: None
Priority: 5
Submitted By: Nobody/Anonymous (nobody)
Assigned to: Beman Dawes (beman_dawes)
Summary: Bad XML format outpout

Initial Comment:
IN FILE :
boost_1_32_0\libs\test\src\supplied_log_formatters.cpp
IN FUNCTION : xml_log_formatter::track_test_case_scope

Missing accodance in test…

void xml_log_formatter::track_test_case_scope(
std::ostream& output, test_case const& tc, bool in_out )
{
    if( !in_out )
        m_indent -= 2;

    print_indent( output );

    output << (in_out ? "<" : "</") << ( tc.p_type ?
"TestCase" : "TestSuite" );

    // HERE MISSING ORIGINAL CODE : MISSING ‘{‘ !!
    //if( in_out )
    // output << " name"; print_attr_value( output,
tc.p_name );

    // Patch
    if( in_out ) {
      output << " name"; print_attr_value( output,
tc.p_name );
    }

    output << ">";

    if( in_out )
        m_indent += 2;
}

----------------------------------------------------------------------

You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=107586&aid=1173937&group_id=7586

-------------------------------------------------------
This SF.net email is sponsored by Demarc:
A global provider of Threat Management Solutions.
Download our HomeAdmin security software for free today!
http://www.demarc.com/Info/Sentarus/hamr30
_______________________________________________
Boost-bugs mailing list
Boost-bugs_at_[hidden]
https://lists.sourceforge.net/lists/listinfo/boost-bugs


Boost list run by bdawes at acm.org, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk