Folks, FYI
here are two mtt errors ( 1.8.2a1r31981 on cisco-usnic cluster) http://mtt.open-mpi.org/index.php?do_redir=2202 http://mtt.open-mpi.org/index.php?do_redir=2203 OpenMPI is fine :-) the test itself was not :-( i fixed this in r2379 (strncpy does not NULL terminate the cstr string and random things happened when calling strcat) Cheers, Gilles Index: ompitest_atoif.c =================================================================== --- ompitest_atoif.c (revision 2378) +++ ompitest_atoif.c (revision 2379) @@ -47,6 +47,7 @@ if (len > 0) { strncpy(cstr, str, len); + cstr[len] = 0; strcat(cstr, "\n"); } cstr[len + 1] = 0;