diff options
author | Jonathan Kim <jkm@hdfgroup.org> | 2010-03-25 21:40:59 (GMT) |
---|---|---|
committer | Jonathan Kim <jkm@hdfgroup.org> | 2010-03-25 21:40:59 (GMT) |
commit | 9a359c82243eb630ab4338dba08796d2d7e43e1a (patch) | |
tree | 056a45153f696a86a26aba62afbe0f8d65a0233d /tools/h5repack/h5repack.sh.in | |
parent | 20fd1f47b757873e6e8e9b7e283f4264ad9c4f1f (diff) | |
download | hdf5-9a359c82243eb630ab4338dba08796d2d7e43e1a.zip hdf5-9a359c82243eb630ab4338dba08796d2d7e43e1a.tar.gz hdf5-9a359c82243eb630ab4338dba08796d2d7e43e1a.tar.bz2 |
[svn-r18457] Purpose:
Add test cases for bug1797 - h5repack doesn't handle references in
compound and vlen datatypes for attributes
Description:
Add test cases ahead as waiting for H5Acopy to complete the fix.
1. obj references in attr of compound type
2. region references in attr of compound type
3. obj references in attr of vlen type
4. region references in attr of vlen type
NOTE:
This test is skipped now and will be included when code part is completed.
( H5Acopy() replaces copy_attr() )
The file&code can be used for lib portion test.
Tested:
jam, amani, linew
Diffstat (limited to 'tools/h5repack/h5repack.sh.in')
-rwxr-xr-x | tools/h5repack/h5repack.sh.in | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tools/h5repack/h5repack.sh.in b/tools/h5repack/h5repack.sh.in index 6a4f63e..2b63fc0 100755 --- a/tools/h5repack/h5repack.sh.in +++ b/tools/h5repack/h5repack.sh.in @@ -60,6 +60,7 @@ FILE14=h5repack_layouto.h5 # A file with an older version of the layout mes FILE15=h5repack_named_dtypes.h5 FILE16=tfamily%05d.h5 # located in common testfiles folder FILE_REF=h5repack_refs.h5 +FILE_ATTR_REF=h5repack_attr_refs.h5 nerrors=0 @@ -535,6 +536,12 @@ TOOLTEST1 $FILE16 # test various references (bug 1814 and 1726) TOOLTEST $FILE_REF +# test attribute with various references (bug 1797) +# the references in attribute of compund or vlen datatype +# TODO: include this test when code portion is completed. +SKIP $FILE_ATTR_REF +#TOOLTEST $FILE_ATTR_REF + if test $nerrors -eq 0 ; then echo "All $TESTNAME tests passed." exit $EXIT_SUCCESS |