diff options
author | Leon Arber <larber@ncsa.uiuc.edu> | 2006-10-04 00:36:04 (GMT) |
---|---|---|
committer | Leon Arber <larber@ncsa.uiuc.edu> | 2006-10-04 00:36:04 (GMT) |
commit | 3ac3e03244ebc93f4a75b8ab945a1b160e679e29 (patch) | |
tree | 246bd3d14ac5e14b4843999f387b53568311a65c /testpar | |
parent | eff5e1330497cc7d831a7fde530133d6d2152ddc (diff) | |
download | hdf5-3ac3e03244ebc93f4a75b8ab945a1b160e679e29.zip hdf5-3ac3e03244ebc93f4a75b8ab945a1b160e679e29.tar.gz hdf5-3ac3e03244ebc93f4a75b8ab945a1b160e679e29.tar.bz2 |
[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)
Diffstat (limited to 'testpar')
-rw-r--r-- | testpar/t_pflush1.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/testpar/t_pflush1.c b/testpar/t_pflush1.c index 6ab04d8..b0bff95 100644 --- a/testpar/t_pflush1.c +++ b/testpar/t_pflush1.c @@ -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: |