From 3ac3e03244ebc93f4a75b8ab945a1b160e679e29 Mon Sep 17 00:00:00 2001 From: Leon Arber Date: Tue, 3 Oct 2006 19:36:04 -0500 Subject: [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) --- testpar/t_pflush1.c | 5 +++-- 1 file 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: -- cgit v0.12