Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r50350 - in trunk/boost/test: detail impl
From: gennadiy.rozental_at_[hidden]
Date: 2008-12-22 02:49:23


Author: rogeeff
Date: 2008-12-22 02:49:22 EST (Mon, 22 Dec 2008)
New Revision: 50350
URL: http://svn.boost.org/trac/boost/changeset/50350

Log:
could->can
Text files modified:
   trunk/boost/test/detail/enable_warnings.hpp | 4 ++--
   trunk/boost/test/detail/suppress_warnings.hpp | 4 ++--
   trunk/boost/test/impl/debug.ipp | 4 ++--
   trunk/boost/test/impl/interaction_based.ipp | 3 +--
   trunk/boost/test/impl/logged_expectations.ipp | 2 +-
   5 files changed, 8 insertions(+), 9 deletions(-)

Modified: trunk/boost/test/detail/enable_warnings.hpp
==============================================================================
--- trunk/boost/test/detail/enable_warnings.hpp (original)
+++ trunk/boost/test/detail/enable_warnings.hpp 2008-12-22 02:49:22 EST (Mon, 22 Dec 2008)
@@ -13,8 +13,8 @@
 // ***************************************************************************
 
 #ifdef BOOST_MSVC
-# pragma warning(default: 4511) // copy constructor could not be generated
-# pragma warning(default: 4512) // assignment operator could not be generated
+# pragma warning(default: 4511) // copy constructor can't not be generated
+# pragma warning(default: 4512) // assignment operator can't not be generated
 # pragma warning(default: 4100) // unreferenced formal parameter
 # pragma warning(default: 4996) // <symbol> was declared deprecated
 # pragma warning(default: 4355) // 'this' : used in base member initializer list

Modified: trunk/boost/test/detail/suppress_warnings.hpp
==============================================================================
--- trunk/boost/test/detail/suppress_warnings.hpp (original)
+++ trunk/boost/test/detail/suppress_warnings.hpp 2008-12-22 02:49:22 EST (Mon, 22 Dec 2008)
@@ -14,8 +14,8 @@
 
 #ifdef BOOST_MSVC
 # pragma warning(push)
-# pragma warning(disable: 4511) // copy constructor could not be generated
-# pragma warning(disable: 4512) // assignment operator could not be generated
+# pragma warning(disable: 4511) // copy constructor can't not be generated
+# pragma warning(disable: 4512) // assignment operator can't not be generated
 # pragma warning(disable: 4100) // unreferenced formal parameter
 # pragma warning(disable: 4996) // <symbol> was declared deprecated
 # pragma warning(disable: 4355) // 'this' : used in base member initializer list

Modified: trunk/boost/test/impl/debug.ipp
==============================================================================
--- trunk/boost/test/impl/debug.ipp (original)
+++ trunk/boost/test/impl/debug.ipp 2008-12-22 02:49:22 EST (Mon, 22 Dec 2008)
@@ -834,8 +834,8 @@
     bool created = !!::CreateProcessA(
         NULL, // pointer to name of executable module; NULL - use the one in command line
         cmd_line, // pointer to command line string
- NULL, // pointer to process security attributes; NULL - debugger's handle couldn't be inherited
- NULL, // pointer to thread security attributes; NULL - debugger's handle couldn't be inherited
+ NULL, // pointer to process security attributes; NULL - debugger's handle can't be inherited
+ NULL, // pointer to thread security attributes; NULL - debugger's handle can't be inherited
         true, // debugger inherit opened handles
         0, // priority flags; 0 - normal priority
         NULL, // pointer to new environment block; NULL - use this process environment

Modified: trunk/boost/test/impl/interaction_based.ipp
==============================================================================
--- trunk/boost/test/impl/interaction_based.ipp (original)
+++ trunk/boost/test/impl/interaction_based.ipp 2008-12-22 02:49:22 EST (Mon, 22 Dec 2008)
@@ -66,8 +66,7 @@
     
     if( reset ) {
         if( new_ptr ) {
- if( ptr != &dummy )
- throw unit_test::framework::setup_error( BOOST_TEST_L( "Couldn't run two interation based test the same time" ) );
+ BOOST_TEST_SETUP_ASSERT( ptr == &dummy, BOOST_TEST_L( "Can't run two interation based test the same time" ) );
                 
             ptr = new_ptr;
         }

Modified: trunk/boost/test/impl/logged_expectations.ipp
==============================================================================
--- trunk/boost/test/impl/logged_expectations.ipp (original)
+++ trunk/boost/test/impl/logged_expectations.ipp 2008-12-22 02:49:22 EST (Mon, 22 Dec 2008)
@@ -85,7 +85,7 @@
     m_log_file.open( log_file_name.begin(), test_or_log ? std::ios::in : std::ios::out );
 
     BOOST_REQUIRE_MESSAGE( m_log_file.is_open(),
- "Couldn't open expectations log file " << log_file_name
+ "Can't open expectations log file " << log_file_name
                                 << " for " << ( m_test_or_log ? "reading" : "writing") );
 
     if( m_test_or_log ) {


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