Removed stream name from config

This commit is contained in:
Phil Nash 2013-05-29 19:06:25 +01:00
parent 3f184e22e8
commit 40e529740c
5 changed files with 323 additions and 419 deletions

View file

@ -413,10 +413,7 @@ namespace Catch {
"OutputDebugString is supported).";
}
virtual void parseIntoConfig( Command const& cmd, ConfigData& config ) {
if( cmd[0][0] == '%' )
config.stream = cmd[0].substr( 1 );
else
config.outputFilename = cmd[0];
config.outputFilename = cmd[0];
}
};