Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Adapt tests to avoid failures when spurious ASan warnings are interlaced.
[simgrid.git] / teshsuite / smpi / coll-alltoall / coll-alltoall.c
index 15e1f9ee5b1f501bfcf9dbaacb55d486ac211df8..0cbee34562de1b45c23f823310b21fa545a5c878 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (c) 2009-2020. The SimGrid Team.
+/* Copyright (c) 2009-2022. The SimGrid Team.
  * All rights reserved.                                                     */
 
 /* This program is free software; you can redistribute it and/or modify it
@@ -66,12 +66,13 @@ int main(int argc, char *argv[])
     printf("%d ", rb[i]);
   printf("]\n");
 
-  if (rank == 0 && status != MPI_SUCCESS) {
-    printf("all_to_all returned %d\n", status);
+  if (rank == 0) {
+    if (status != MPI_SUCCESS)
+      printf("all_to_all returned %d\n", status);
     fflush(stdout);
   }
   xbt_free(sb);
   xbt_free(rb);
   MPI_Finalize();
-  return (EXIT_SUCCESS);
+  return EXIT_SUCCESS;
 }