From a76d93ad548ff553799d7f96d60593a9fee97885 Mon Sep 17 00:00:00 2001 From: Phil Nash Date: Wed, 26 Jun 2013 08:42:05 +0100 Subject: [PATCH] Removed filename from --reporter option (it's not implemented yet) --- include/internal/catch_commandline.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/internal/catch_commandline.hpp b/include/internal/catch_commandline.hpp index 16c23e4f..871db331 100644 --- a/include/internal/catch_commandline.hpp +++ b/include/internal/catch_commandline.hpp @@ -85,7 +85,8 @@ namespace Catch { .describe( "reporter to use - defaults to console" ) .shortOpt( "r") .longOpt( "reporter" ) - .argName( "name[:filename]" ); +// .argName( "name[:filename]" ); + .argName( "name" ); cli.bind( &ConfigData::name ) .describe( "suite name" )