Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r53663 - trunk/boost/test/impl
From: gennadiy.rozental_at_[hidden]
Date: 2009-06-06 02:58:28


Author: rogeeff
Date: 2009-06-06 02:58:28 EDT (Sat, 06 Jun 2009)
New Revision: 53663
URL: http://svn.boost.org/trac/boost/changeset/53663

Log:
change warning message
Text files modified:
   trunk/boost/test/impl/results_collector.ipp | 6 +++---
   1 files changed, 3 insertions(+), 3 deletions(-)

Modified: trunk/boost/test/impl/results_collector.ipp
==============================================================================
--- trunk/boost/test/impl/results_collector.ipp (original)
+++ trunk/boost/test/impl/results_collector.ipp 2009-06-06 02:58:28 EDT (Sat, 06 Jun 2009)
@@ -215,9 +215,9 @@
         if( !num_failures_match )
             BOOST_TEST_MESSAGE( "Test case " << tu.p_name << " has fewer failures than expected" );
 
- bool has_any_assertions = tr.p_aborted || (tr.p_assertions_failed != 0) || (tr.p_assertions_passed != 0);
- if( !has_any_assertions )
- BOOST_TEST_MESSAGE( "Test case " << tu.p_name << " doesn't include any assertions" );
+ bool run_any_assertions = tr.p_aborted || (tr.p_assertions_failed != 0) || (tr.p_assertions_passed != 0);
+ if( !run_any_assertions )
+ BOOST_TEST_MESSAGE( "Test case " << tu.p_name << " did not run any assertions" );
     }
 }
 


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk