From: degomme Date: Wed, 15 Mar 2017 22:57:02 +0000 (+0100) Subject: oops, wasn't supposed to change that X-Git-Tag: v3_15~96^2~1 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/73a7fe0ba8650c65f6a7712a4e2b6c9057eac6ac?ds=sidebyside oops, wasn't supposed to change that --- diff --git a/teshsuite/smpi/mpich3-test/attr/fkeyvaltype.c b/teshsuite/smpi/mpich3-test/attr/fkeyvaltype.c index 55f172512d..59cfe0b447 100644 --- a/teshsuite/smpi/mpich3-test/attr/fkeyvaltype.c +++ b/teshsuite/smpi/mpich3-test/attr/fkeyvaltype.c @@ -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);