Boost logo

Boost-Commit :

From: grafikrobot_at_[hidden]
Date: 2008-06-27 19:29:09


Author: grafik
Date: 2008-06-27 19:29:09 EDT (Fri, 27 Jun 2008)
New Revision: 46798
URL: http://svn.boost.org/trac/boost/changeset/46798

Log:
Partially revert recent change [46486] which breaks processing for regression testing runners. Thanks to Richard W. for finding the problem.
Text files modified:
   trunk/tools/regression/src/process_jam_log.cpp | 2 +-
   1 files changed, 1 insertions(+), 1 deletions(-)

Modified: trunk/tools/regression/src/process_jam_log.cpp
==============================================================================
--- trunk/tools/regression/src/process_jam_log.cpp (original)
+++ trunk/tools/regression/src/process_jam_log.cpp 2008-06-27 19:29:09 EDT (Fri, 27 Jun 2008)
@@ -157,7 +157,7 @@
     temp.erase( temp.find_last_of( "/" ) ); // remove leaf
     temp = split( trim_left( temp ) ).back();
     if ( temp[0] == '.' ) temp.erase( 0, temp.find_first_not_of( "./" ) );
- else if ( temp[0] == '/' ) temp.erase( 0, locate_root.string().size()+1 );
+ else temp.erase( 0, locate_root.string().size()+1 );
     if ( echo )
         std::cout << "\ttarget_directory( \"" << s << "\") -> \"" << temp << "\"" << std::endl;
     return temp;


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