summaryrefslogtreecommitdiffstats
path: root/testpar/t_pflush1.c
diff options
context:
space:
mode:
authorLeon Arber <larber@ncsa.uiuc.edu>2006-10-04 00:36:04 (GMT)
committerLeon Arber <larber@ncsa.uiuc.edu>2006-10-04 00:36:04 (GMT)
commit3ac3e03244ebc93f4a75b8ab945a1b160e679e29 (patch)
tree246bd3d14ac5e14b4843999f387b53568311a65c /testpar/t_pflush1.c
parenteff5e1330497cc7d831a7fde530133d6d2152ddc (diff)
downloadhdf5-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/t_pflush1.c')
-rw-r--r--testpar/t_pflush1.c5
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: