X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/111a3da5058ade0ddcfb01173504a46ff24c8429..fa0fb4079f99cf9ceda4ea3537b05f0723e48d29:/teshsuite/smpi/io-all/io-all.c diff --git a/teshsuite/smpi/io-all/io-all.c b/teshsuite/smpi/io-all/io-all.c index 9d3506c86a..72468b16b1 100644 --- a/teshsuite/smpi/io-all/io-all.c +++ b/teshsuite/smpi/io-all/io-all.c @@ -9,7 +9,11 @@ int main( int argc, char *argv[] ) { int errs = 0; - int size, rank, i, *buf, count; + int size; + int rank; + int i; + int* buf; + int count; MPI_File fh; MPI_Comm comm; MPI_Status status; @@ -17,7 +21,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) ); @@ -71,4 +75,4 @@ int main( int argc, char *argv[] ) MPI_Finalize(); return errs; -} \ No newline at end of file +}