X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/f3b7e5f4b4d7c87ee3e8827313ec966ea8fc8387..39c935d6d5ee86d153f6f7e6a10d723ae7c57f6f:/examples/smpi/ampi_test/ampi_test.cpp diff --git a/examples/smpi/ampi_test/ampi_test.cpp b/examples/smpi/ampi_test/ampi_test.cpp index 78d132a066..e9e25d31ed 100644 --- a/examples/smpi/ampi_test/ampi_test.cpp +++ b/examples/smpi/ampi_test/ampi_test.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2009-2020. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2009-2021. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ @@ -10,9 +10,15 @@ int main(int argc, char* argv[]) { MPI_Init(&argc, &argv); + // useless alocations for testing and coverage void* pointer = malloc(100 * sizeof(int)); + void* ptmp; + if ((ptmp = realloc(pointer, 50 * sizeof(int))) != nullptr) + pointer = ptmp; + if ((ptmp = realloc(pointer, 200 * sizeof(int))) != nullptr) + pointer = ptmp; free(pointer); - pointer = malloc(100 * sizeof(int)); + pointer = calloc(100, sizeof(int)); int rank; int err = MPI_Comm_rank(MPI_COMM_WORLD, &rank); /* Get id of this process */ if (err != MPI_SUCCESS) {