Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add missing call to MPI_Finalize().
authorArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Sat, 2 Oct 2021 11:45:32 +0000 (13:45 +0200)
committerArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Sat, 2 Oct 2021 11:45:32 +0000 (13:45 +0200)
teshsuite/smpi/mpich3-test/rma/rma-contig.c

index 45fe54a..e89b06e 100644 (file)
@@ -133,6 +133,7 @@ int main(int argc, char **argv)
     run_test(MPI_LOCK_SHARED, MPI_MODE_NOCHECK);
 
     MTest_Finalize(0);
+    MPI_Finalize();
 
     return 0;
 }