Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r61091 - trunk/tools/regression/src
From: ramey_at_[hidden]
Date: 2010-04-05 21:37:09


Author: ramey
Date: 2010-04-05 21:37:09 EDT (Mon, 05 Apr 2010)
New Revision: 61091
URL: http://svn.boost.org/trac/boost/changeset/61091

Log:
changes to properly support DLLS in jamfiles
Properties modified:
   trunk/tools/regression/src/library_status.cpp (contents, props changed)
Text files modified:
   trunk/tools/regression/src/library_status.cpp | 6 +++++-
   1 files changed, 5 insertions(+), 1 deletions(-)

Modified: trunk/tools/regression/src/library_status.cpp
==============================================================================
--- trunk/tools/regression/src/library_status.cpp (original)
+++ trunk/tools/regression/src/library_status.cpp 2010-04-05 21:37:09 EDT (Mon, 05 Apr 2010)
@@ -630,10 +630,14 @@
                 continue;
             
             string test_name = itr->filename();
- // strip off the ".test" is there is one
+ // if the file name contains ".test"
             string::size_type s = test_name.find( ".test" );
             if(string::npos != s)
+ // strip it off
                 test_name.resize(s);
+ else
+ // if it doesn't - skip this directory
+ continue;
 
             results.push_back( std::string() );
             do_row(


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