mirror of
https://github.com/boostorg/boost.git
synced 2025-04-07 14:29:14 +00:00
Merge to release
[SVN r61090]
This commit is contained in:
parent
168bcbcc83
commit
f2a35f4310
1 changed files with 5 additions and 1 deletions
|
@ -630,10 +630,14 @@ namespace
|
|||
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(
|
||||
|
|
Loading…
Add table
Reference in a new issue