summaryrefslogtreecommitdiffstats
path: root/tools/testfiles/tcomp-2.ddl
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2000-12-11 21:26:55 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2000-12-11 21:26:55 (GMT)
commit3dcc29ec41d6dad568ac15cfebbbfe163f314a5a (patch)
treed3aa0a46524f8581d328c59219885171e31055b6 /tools/testfiles/tcomp-2.ddl
parent5c5b65eeec0d52f82007acfdc44eee39412adfcf (diff)
downloadhdf5-3dcc29ec41d6dad568ac15cfebbbfe163f314a5a.zip
hdf5-3dcc29ec41d6dad568ac15cfebbbfe163f314a5a.tar.gz
hdf5-3dcc29ec41d6dad568ac15cfebbbfe163f314a5a.tar.bz2
[svn-r3113] Purpose:
Bug Fix Description: Stumbled across a problem when working on the J90 h5dump problem where I noticed that some of the output for named compound datatypes wasn't being displayed. Solution: Generated correct DDL files. Platforms tested: FreeBSD 4.2 (hawkwind) & Cray J90 (killeen)
Diffstat (limited to 'tools/testfiles/tcomp-2.ddl')
-rw-r--r--tools/testfiles/tcomp-2.ddl12
1 files changed, 6 insertions, 6 deletions
diff --git a/tools/testfiles/tcomp-2.ddl b/tools/testfiles/tcomp-2.ddl
index 32a4c2d..ac978e5 100644
--- a/tools/testfiles/tcomp-2.ddl
+++ b/tools/testfiles/tcomp-2.ddl
@@ -2,16 +2,16 @@
Expected output for 'h5dump -t /type1 /type2 /group1/type3 tcompound.h5'
#############################
HDF5 "tcompound.h5" {
-DATATYPE "/type1"
+DATATYPE "/type1" H5T_COMPOUND {
H5T_STD_I32BE "int_name";
H5T_IEEE_F32BE "float_name";
-
-DATATYPE "/type2"
+}
+DATATYPE "/type2" H5T_COMPOUND {
H5T_ARRAY { [4] H5T_STD_I32BE } "int_array";
H5T_ARRAY { [5][6] H5T_IEEE_F32BE } "float_array";
-
-DATATYPE "/group1/type3"
+}
+DATATYPE "/group1/type3" H5T_COMPOUND {
H5T_STD_I32BE "int";
H5T_IEEE_F32BE "float";
-
+}
}