Changed --filenames-as-tags prefix to #, added -# as short form and updated docs

This commit is contained in:
Phil Nash
2015-07-06 18:46:50 +01:00
parent 584032dfa4
commit 02e1966db3
3 changed files with 33 additions and 7 deletions

View File

@@ -120,7 +120,7 @@ namespace Catch {
if( lastDot != std::string::npos )
filename = filename.substr( 0, lastDot );
tags.insert( "@" + filename );
tags.insert( "#" + filename );
setTags( test, tags );
}
}