This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "MPICH primary repository". The branch, master has been updated via 485cd98ae1d94f8d6c32223618a1e47ea9fb4938 (commit) from e99e8822e8adc0caa63e2fbb55d977dc3d7972b2 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- http://git.mpich.org/mpich.git/commitdiff/485cd98ae1d94f8d6c32223618a1e47ea9... commit 485cd98ae1d94f8d6c32223618a1e47ea9fb4938 Author: Huiwei Lu <[email protected]> Date: Wed Nov 12 14:55:04 2014 -0600 Cleans the debugging print of bcast Free the group and communicator created in the test so it does not complain when memory debug is on. Signed-off-by: Wesley Bland <[email protected]> diff --git a/test/mpi/ft/bcast.c b/test/mpi/ft/bcast.c index 8c877a9..02b2ee2 100644 --- a/test/mpi/ft/bcast.c +++ b/test/mpi/ft/bcast.c @@ -84,6 +84,9 @@ int main(int argc, char **argv) fflush(stdout); } + MPI_Group_free(&world); + MPI_Group_free(&newgroup); + MPI_Comm_free(&newcomm); MPI_Finalize(); return 0; ----------------------------------------------------------------------- Summary of changes: test/mpi/ft/bcast.c | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) hooks/post-receive -- MPICH primary repository