]> AND Public Git Repository - simgrid.git/blobdiff - teshsuite/smpi/io-all/io-all.c
Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Minor fix in test.
[simgrid.git] / teshsuite / smpi / io-all / io-all.c
index 397e875498f5a70716e6ba2edbc4e371a59e4730..a05c21f91c756b41e763d0fedc4f1c45eb927807 100644 (file)
@@ -11,7 +11,6 @@ int main( int argc, char *argv[] )
     int errs = 0;
     int size;
     int rank;
-    int i;
     int* buf;
     int count;
     MPI_File fh;
@@ -21,7 +20,7 @@ int main( int argc, char *argv[] )
     MPI_Init( &argc, &argv );
  
     comm = MPI_COMM_WORLD;
-    MPI_File_open( comm, (char*)"/scratch/lib/libsimgrid.so.3.6.2", MPI_MODE_RDWR | MPI_MODE_CREATE | MPI_MODE_DELETE_ON_CLOSE, MPI_INFO_NULL, &fh );
+    MPI_File_open( comm, (char*)"/scratch/testfile", MPI_MODE_RDWR | MPI_MODE_CREATE | MPI_MODE_DELETE_ON_CLOSE, MPI_INFO_NULL, &fh );
     MPI_Comm_size( comm, &size );
     MPI_Comm_rank( comm, &rank );
     buf = (int *)malloc( 10 * sizeof(int) );
@@ -63,7 +62,8 @@ int main( int argc, char *argv[] )
     MPI_Barrier( comm );
 
     MPI_File_seek( fh, sizeof(int)*rank, MPI_SEEK_SET );
-    for (i=0; i<size; i++) buf[i] = -1;
+    for (int i = 0; i < size; i++)
+      buf[i] = -1;
     MPI_File_read_all( fh, buf, 10, MPI_INT, &status );
     // if (buf[0] != rank) {
         // errs++;
@@ -75,4 +75,4 @@ int main( int argc, char *argv[] )
  
     MPI_Finalize();
     return errs;
-}
\ No newline at end of file
+}