Skip to content
Snippets Groups Projects
Commit 11103197 authored by Julien Malik's avatar Julien Malik
Browse files

TEST: don't catch the exception in the test

parent 4d7e29c4
No related branches found
No related tags found
No related merge requests found
......@@ -48,16 +48,7 @@ int otbConcatenateVectorDataFilter (int argc, char * argv[])
typedef otb::CommandLineArgumentParseResult ParserResultType;
ParserResultType::Pointer parseResult = ParserResultType::New();
try
{
parser->ParseCommandLine(argc, argv, parseResult);
}
catch ( itk::ExceptionObject & err )
{
return EXIT_FAILURE;
}
parser->ParseCommandLine(argc, argv, parseResult);
// Get number of input vectorDatas
unsigned int nbInputs = parseResult->GetNumberOfParameters("--InputVectorDatas");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment