summaryrefslogtreecommitdiffstats
path: root/testpar/Makefile.in
diff options
context:
space:
mode:
authorAlbert Cheng <acheng@hdfgroup.org>2005-08-30 04:35:17 (GMT)
committerAlbert Cheng <acheng@hdfgroup.org>2005-08-30 04:35:17 (GMT)
commit3182a8a040b463629fd9f266b6a1eda6ce70c3d7 (patch)
treedb107c21fe8ae27e83b05686fd919dd44c0c12b6 /testpar/Makefile.in
parentbd4312d0497592a665a25415ec2f9d3db9d9f6b2 (diff)
downloadhdf5-3182a8a040b463629fd9f266b6a1eda6ce70c3d7.zip
hdf5-3182a8a040b463629fd9f266b6a1eda6ce70c3d7.tar.gz
hdf5-3182a8a040b463629fd9f266b6a1eda6ce70c3d7.tar.bz2
[svn-r11312] Purpose:
Bug #281 Description: A dataset created in serial mode with H5D_ALLOC_TIME_INCR allocation setting was not extendible, either explicitly by H5Dextend or implicitly by writing to unallocated chunks. This was because parallel mode expects the allocation mode be H5D_ALLOC_TIME_INCR only. Solution: Modified library to allocate more space when needed or directed if the file is opened by parallel mode, independent of what the dataset allocation mode is. Platforms tested: Heping pp.
Diffstat (limited to 'testpar/Makefile.in')
-rw-r--r--testpar/Makefile.in6
1 files changed, 4 insertions, 2 deletions
diff --git a/testpar/Makefile.in b/testpar/Makefile.in
index 0a7aea4..c886e66 100644
--- a/testpar/Makefile.in
+++ b/testpar/Makefile.in
@@ -78,7 +78,8 @@ t_mpi_LDADD = $(LDADD)
t_mpi_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2)
am_testphdf5_OBJECTS = testphdf5.$(OBJEXT) t_dset.$(OBJEXT) \
t_file.$(OBJEXT) t_mdset.$(OBJEXT) t_ph5basic.$(OBJEXT) \
- t_coll_chunk.$(OBJEXT) t_span_tree.$(OBJEXT)
+ t_coll_chunk.$(OBJEXT) t_span_tree.$(OBJEXT) \
+ t_chunk_alloc.$(OBJEXT)
testphdf5_OBJECTS = $(am_testphdf5_OBJECTS)
testphdf5_LDADD = $(LDADD)
testphdf5_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2)
@@ -321,7 +322,7 @@ TEST_PROG_PARA = t_mpi t_fphdf5 testphdf5
TEST_SCRIPT_PARA = testph5.sh
check_SCRIPTS = $(TEST_SCRIPT)
testphdf5_SOURCES = testphdf5.c t_dset.c t_file.c t_mdset.c t_ph5basic.c \
- t_coll_chunk.c t_span_tree.c
+ t_coll_chunk.c t_span_tree.c t_chunk_alloc.c
# The tests all depend on the hdf5 library and the test library
@@ -403,6 +404,7 @@ mostlyclean-compile:
distclean-compile:
-rm -f *.tab.c
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/t_chunk_alloc.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/t_coll_chunk.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/t_dset.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/t_file.Po@am__quote@