Skip to content

Commit

Permalink
Comment out check for boost-test from process_jam_log. It's not reall…
Browse files Browse the repository at this point in the history
…y needed and jsut get's in the way of processing when there is build output before the boost-test lines. As is the case with the new BB configuration system.

git-svn-id: http://svn.boost.org/svn/boost/trunk@61103 b8fc166d-592f-0410-95f2-cb63ce0dd405
  • Loading branch information
grafik committed Apr 6, 2010
1 parent 7b83545 commit 7f6dc0c
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions tools/regression/src/process_jam_log.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -758,13 +758,13 @@ int main( int argc, char ** argv )
line_start.find( ".linkonce" ) == string::npos )
)
{
if ( !test2info.size() )
{
std::cout << "*****Error - No \"boost-test\" lines encountered.\n"
" (Usually occurs when bjam was envoked without the --dump-tests option\n"
" or bjam was envoked in the wrong directory)\n";
return 1;
}
//~ if ( !test2info.size() )
//~ {
//~ std::cout << "*****Error - No \"boost-test\" lines encountered.\n"
//~ " (Usually occurs when bjam was envoked without the --dump-tests option\n"
//~ " or bjam was envoked in the wrong directory)\n";
//~ return 1;
//~ }

string action( ( line_start.find( "Link-action" ) != string::npos
|| line_start.find( "vc-Link" ) != string::npos
Expand Down

0 comments on commit 7f6dc0c

Please sign in to comment.