summaryrefslogtreecommitdiffstats
path: root/testpar/t_file.c
diff options
context:
space:
mode:
authorAlbert Cheng <acheng@hdfgroup.org>2000-12-12 23:12:57 (GMT)
committerAlbert Cheng <acheng@hdfgroup.org>2000-12-12 23:12:57 (GMT)
commit061ed07676eccb82c3d46ae744fb094bcd9169e4 (patch)
treeaae107b6290f66862eaf161ad583be533ea1c92d /testpar/t_file.c
parentf401dda2d7b1ef22505d285c14218143be011321 (diff)
downloadhdf5-061ed07676eccb82c3d46ae744fb094bcd9169e4.zip
hdf5-061ed07676eccb82c3d46ae744fb094bcd9169e4.tar.gz
hdf5-061ed07676eccb82c3d46ae744fb094bcd9169e4.tar.bz2
[svn-r3119] Purpose:
New features Description: Some testers found the filename lengths too short. Changed it to use the FILENAME_MAX usually defined in stdio.h. If not, set it to 512 which should be sufficient for users but should not exceed any system limits. Also added a new test parameters of ndatasets so that the tester can specific a different number of datasets for the multiple datasets tests. Changed the datatype of datasets created to DOUBLE. This eliminates the current racing conditions. But the racing bugs during conversion still need to be tracked down and squashed. Platforms tested: Modi4 -64.
Diffstat (limited to 'testpar/t_file.c')
-rw-r--r--testpar/t_file.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/testpar/t_file.c b/testpar/t_file.c
index d2b3d86..50cef96 100644
--- a/testpar/t_file.c
+++ b/testpar/t_file.c
@@ -77,6 +77,8 @@ test_split_comm_access(char *filename)
VRFY((mrc==MPI_SUCCESS), "");
}
}
+ mrc = MPI_Barrier(MPI_COMM_WORLD);
+ VRFY((mrc==MPI_SUCCESS), "final MPI_Barrier succeeded");
}