[svn-r12717] Purpose: Bug Fix

Description:
	It seems that, on AIX, calling MPI_Finalize without closing all files results in an error.
	This causes t_pflush1 to fail because the whole point of the test is to see what happens if you
	don't close a file.  Try getting rid of the call to MPI_Finalize to see if this will silence the error.

Tested:
	AIX (copper)
This commit is contained in:
Leon Arber 2006-10-03 19:36:04 -05:00
parent eff5e13304
commit 3ac3e03244

View File

@ -164,8 +164,9 @@ main(int argc, char* argv[])
SKIPPED();
puts(" Test not compatible with current Virtual File Driver");
}
MPI_Finalize();
/* AIX doesn't like it when you try to call MPI_Finalize without closing all files. */
/* MPI_Finalize();*/
HD_exit(0);
error: