Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
otb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
273
Issues
273
List
Boards
Labels
Service Desk
Milestones
Merge Requests
8
Merge Requests
8
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Main Repositories
otb
Commits
88e09483
Commit
88e09483
authored
Dec 21, 2018
by
Victor Poughon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
TEST: remove otbImageFileReaderServerName.cxx
parent
85035996
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
57 deletions
+0
-57
Modules/IO/ImageIO/test/CMakeLists.txt
Modules/IO/ImageIO/test/CMakeLists.txt
+0
-2
Modules/IO/ImageIO/test/otbImageFileReaderServerName.cxx
Modules/IO/ImageIO/test/otbImageFileReaderServerName.cxx
+0
-54
Modules/IO/ImageIO/test/otbImageIOTestDriver.cxx
Modules/IO/ImageIO/test/otbImageIOTestDriver.cxx
+0
-1
No files found.
Modules/IO/ImageIO/test/CMakeLists.txt
View file @
88e09483
...
...
@@ -77,8 +77,6 @@ otbMultiImageFileWriterTest.cxx
otbWriteGeomFile.cxx
)
set
(
OTBImageIOTests
${
OTBImageIOTests
}
otbImageFileReaderServerName.cxx
)
add_executable
(
otbImageIOTestDriver
${
OTBImageIOTests
}
)
target_link_libraries
(
otbImageIOTestDriver
${
OTBImageIO-Test_LIBRARIES
}
)
otb_module_target_label
(
otbImageIOTestDriver
)
...
...
Modules/IO/ImageIO/test/otbImageFileReaderServerName.cxx
deleted
100644 → 0
View file @
85035996
/*
* Copyright (C) 2005-2017 Centre National d'Etudes Spatiales (CNES)
*
* This file is part of Orfeo Toolbox
*
* https://www.orfeo-toolbox.org/
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "otbImage.h"
#include "itkMacro.h"
#include <iostream>
#include "otbImageFileReader.h"
int
otbImageFileReaderServerName
(
int
itkNotUsed
(
argc
),
char
*
argv
[])
{
// Verify the number of parameters in the command line
const
char
*
inputFilename
=
argv
[
1
];
typedef
unsigned
char
InputPixelType
;
const
unsigned
int
Dimension
=
2
;
typedef
otb
::
Image
<
InputPixelType
,
Dimension
>
InputImageType
;
typedef
otb
::
ImageFileReader
<
InputImageType
>
ReaderType
;
ReaderType
::
Pointer
reader
=
ReaderType
::
New
();
reader
->
SetFileName
(
inputFilename
);
reader
->
GenerateOutputInformation
();
if
(
reader
->
GetOutput
()
->
GetImageKeywordlist
().
GetSize
()
==
0
)
{
std
::
cerr
<<
"Error: Keyword list is empty "
<<
std
::
endl
;
return
EXIT_FAILURE
;
}
return
EXIT_SUCCESS
;
}
Modules/IO/ImageIO/test/otbImageIOTestDriver.cxx
View file @
88e09483
...
...
@@ -152,5 +152,4 @@ void RegisterTests()
REGISTER_TEST
(
otbImageFileWriterOptBandTest
);
REGISTER_TEST
(
otbMultiImageFileWriterTest
);
REGISTER_TEST
(
otbWriteGeomFile
);
REGISTER_TEST
(
otbImageFileReaderServerName
);
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment