From: Augustin Degomme Date: Wed, 4 Dec 2019 21:47:01 +0000 (+0100) Subject: remove debug stuff added by mistake... X-Git-Tag: v3.25~337^2~2 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/ce2c1e5bd59b2d28d3361a0f2d31b6ce309a0595 remove debug stuff added by mistake... --- diff --git a/teshsuite/smpi/pt2pt-pingpong/pt2pt-pingpong.c b/teshsuite/smpi/pt2pt-pingpong/pt2pt-pingpong.c index c395917d9f..dcaf7e6131 100644 --- a/teshsuite/smpi/pt2pt-pingpong/pt2pt-pingpong.c +++ b/teshsuite/smpi/pt2pt-pingpong/pt2pt-pingpong.c @@ -8,7 +8,6 @@ #include #include -#include static void test_opts(int* argc, char **argv[]){ int found = 0; @@ -31,8 +30,6 @@ int main(int argc, char *argv[]) int rank; int msg = 99; MPI_Status status; - int* test = (int*)malloc(8); - int err = MPI_Init(&argc, &argv); /* Initialize MPI */ /* test getopt function */ @@ -75,7 +72,6 @@ int main(int argc, char *argv[]) MPI_Send(&msg, 1, MPI_INT, src, tag2, MPI_COMM_WORLD); } } - free(test); MPI_Finalize(); return 0; }