]> SALOME platform Git repositories - tools/medcoupling.git/commitdiff
Salome HOME
*** empty log message ***
authorcvw <cvw>
Thu, 22 Mar 2012 10:05:16 +0000 (10:05 +0000)
committercvw <cvw>
Thu, 22 Mar 2012 10:05:16 +0000 (10:05 +0000)
src/MEDPartitioner/Test/MEDPARTITIONERTest.cxx
src/MEDPartitioner/Test/MEDPARTITIONERTestPara.cxx

index cbd0f63d9872215a66d53232d003a62493ef0737..cce72b8f323d0cc6a820402d9ab8c6a150b05171 100644 (file)
@@ -89,6 +89,15 @@ void MEDPARTITIONERTest::setbigSize()
 void MEDPARTITIONERTest::setUp()
 {
   this->_verbose=0;
+#if defined(HAVE_MPI2)
+  MPI_Init(0,0)
+  MPI_Comm_size(MPI_COMM_WORLD, &MyGlobals::_World_Size);
+  MPI_Comm_rank(MPI_COMM_WORLD, &MyGlobals::_Rank);
+#else
+  //sequential : no MPI
+  MyGlobals::_World_Size=1;
+  MyGlobals::_Rank=0;
+#endif
 }
 
 // ============================================================================
index 75b1d688e627eea4ab0fe2fe956ce55b146b858b..f7ff8929059fb201af3848792022442da1d2f12b 100644 (file)
@@ -71,10 +71,6 @@ void MEDPARTITIONERTest::verifyMedpartitionerOnSmallSizeForMesh()
   CPPUNIT_ASSERT_EQUAL(0, res);
   input=targetName+".xml";
   
-  MPI_Init(0,0);
-  MPI_Comm_size(MPI_COMM_WORLD, &MyGlobals::_World_Size);
-  MPI_Comm_rank(MPI_COMM_WORLD, &MyGlobals::_Rank);
-
   MEDPARTITIONER::ParaDomainSelector parallelizer(false);
   MEDPARTITIONER::MeshCollection collection(input,parallelizer);
   CPPUNIT_ASSERT_EQUAL(3, collection.getMeshDimension());