diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2004-01-13 18:00:59 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2004-01-13 18:00:59 (GMT) |
commit | 00edaf52c5c31134dcaf4fbdc1933104d510236f (patch) | |
tree | c23928a4a7a490e13f0cfcdd43c030a7228ce22b /test/Makefile.in | |
parent | f151f5a2a567037650b7acae74b3bd3cdc93d7af (diff) | |
download | hdf5-00edaf52c5c31134dcaf4fbdc1933104d510236f.zip hdf5-00edaf52c5c31134dcaf4fbdc1933104d510236f.tar.gz hdf5-00edaf52c5c31134dcaf4fbdc1933104d510236f.tar.bz2 |
[svn-r8053] Purpose:
Bug fix
Description:
Correct two problems with variable-length datatypes in datasets:
- When overwriting an entire dataset, writing the fill value to the
file would be skipped, causing problems for VL datatypes when
objects in the file had been unlinked (and thus the space in the
file was not all zeros)
- When an application has set a fill-value for a dataset and the
dataset's datatype contained a VL datatype, the library was filling
space on disk with the memory form of the VL information, instead
of the disk form.
Platforms tested:
FreeBSD 4.9 (sleipnir)
h5committest
Diffstat (limited to 'test/Makefile.in')
-rw-r--r-- | test/Makefile.in | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/test/Makefile.in b/test/Makefile.in index cde5dde..15421e7 100644 --- a/test/Makefile.in +++ b/test/Makefile.in @@ -59,12 +59,12 @@ MOSTLYCLEAN=cmpd_dset.h5 compact_dataset.h5 dataset.h5 extend.h5 istore.h5 \ links.h5 links[1-3].h5 big.data big[0-9][0-9][0-9][0-9][0-9].h5 \ dtypes[1-3].h5 tattr.h5 tselect.h5 mtime.h5 unlink.h5 \ fillval_[0-9].h5 fillval.raw mount_[0-9].h5 testmeta.h5 ttime.h5 \ - trefer[1-3].h5 tvltypes.h5 tvlstr.h5 flush.h5 enum1.h5 \ - titerate.h5 ttsafe.h5 tarray1.h5 tgenprop.h5 tmisc[0-9]*.h5 \ - set_extent_read.h5 set_extent_create.h5 getname.h5 \ - getname[1-3].h5 sec2_file.h5 family_file000[0-3][0-9].h5 \ - multi_file-[rs].h5 core_file new_move_[ab].h5 ntypes.h5 \ - dangle.h5 error_test.h5 err_compat.h5 + trefer[1-3].h5 tvltypes.h5 tvlstr.h5 tvlstr2.h5 flush.h5 \ + enum1.h5 titerate.h5 ttsafe.h5 tarray1.h5 tgenprop.h5 \ + tmisc[0-9]*.h5 set_extent_read.h5 set_extent_create.h5 \ + getname.h5 getname[1-3].h5 sec2_file.h5 \ + family_file000[0-3][0-9].h5 multi_file-[rs].h5 core_file \ + new_move_[ab].h5 ntypes.h5 dangle.h5 error_test.h5 err_compat.h5 CLEAN=$(TIMINGS) |