Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
oops, wasn't supposed to change that
authordegomme <augustin.degomme@unibas.ch>
Wed, 15 Mar 2017 22:57:02 +0000 (23:57 +0100)
committerdegomme <augustin.degomme@unibas.ch>
Wed, 15 Mar 2017 22:58:19 +0000 (23:58 +0100)
teshsuite/smpi/mpich3-test/attr/fkeyvaltype.c

index 55f1725..59cfe0b 100644 (file)
@@ -63,7 +63,7 @@ int main(int argc, char *argv[])
 
         /* We create some dummy keyvals here in case the same keyval
          * is reused */
-        for (i = 0; i < 1; i++) {
+        for (i = 0; i < 32; i++) {
             MPI_Type_create_keyval(MPI_NULL_COPY_FN, MPI_NULL_DELETE_FN, &key[i], (void *) 0);
         }
 
@@ -105,7 +105,7 @@ int main(int argc, char *argv[])
             }
         }
         /* Free those other keyvals */
-        for (i = 0; i < 1; i++) {
+        for (i = 0; i < 32; i++) {
             MPI_Type_free_keyval(&key[i]);
         }
         MTestFreeDatatype(&mrtype);