Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Allow to use non absolute path in MPI IO.
[simgrid.git] / teshsuite / smpi / mpich3-test / io / rdwrord.c
index e8dc8e1..e0e76d2 100644 (file)
@@ -24,7 +24,7 @@ int main(int argc, char *argv[])
     MTest_Init(&argc, &argv);
 
     comm = MPI_COMM_WORLD;
-    MPI_File_open(comm, (char *) "/scratch/test.ord",
+    MPI_File_open(comm, (char *) "test.ord",
                   MPI_MODE_RDWR | MPI_MODE_CREATE | MPI_MODE_DELETE_ON_CLOSE, MPI_INFO_NULL, &fh);
 
     MPI_Comm_size(comm, &size);