Skip to content
Snippets Groups Projects
Commit ea7c5c32 authored by Emmanuelle Sarrazin's avatar Emmanuelle Sarrazin
Browse files

BUG: Only master process (proc 0) runs regression tests

parent 1765c409
No related branches found
No related tags found
No related merge requests found
......@@ -32,6 +32,9 @@
#include "itkMersenneTwisterRandomVariateGenerator.h"
#ifdef OTB_USE_MPI
#include "otbMPIConfig.h"
#endif
typedef int (*MainFuncPointer)(int, char*[]);
std::map<std::string, MainFuncPointer> StringToTestFunctionMap;
......@@ -332,6 +335,11 @@ int main(int ac, char* av[])
result = EXIT_SUCCESS;
#ifdef OTB_USE_MPI
otb::MPIConfig::Pointer mpiConfig = otb::MPIConfig::Instance();
if (mpiConfig->GetMyRank() == 0)
{
#endif
std::cout << " -> Test EXIT SUCCESS." << std::endl;
if (lFlagRegression == false)
{
......@@ -410,6 +418,9 @@ int main(int ac, char* av[])
}
std::cout << "------------- End control baseline tests -------------" << std::endl;
#ifdef OTB_USE_MPI
}
#endif
return result;
}
}
......
......@@ -15,6 +15,9 @@ otb_module(OTBTestKernel
OTBOSSIMAdapters
OTBImageManipulation
OPTIONAL_DEPENDS
OTBMPIConfig
DESCRIPTION
"${DOCUMENTATION}"
)
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