mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-03-31 17:10:47 +08:00
[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)
This commit is contained in:
parent
5c5b65eeec
commit
3dcc29ec41
@ -3,10 +3,10 @@ Expected output for 'h5dump tcompound.h5'
|
||||
#############################
|
||||
HDF5 "tcompound.h5" {
|
||||
GROUP "/" {
|
||||
DATATYPE "#6632:0"
|
||||
DATATYPE "#6632:0" H5T_COMPOUND {
|
||||
H5T_STD_I32BE "int";
|
||||
H5T_IEEE_F32BE "float";
|
||||
|
||||
}
|
||||
DATASET "dset1" {
|
||||
DATATYPE H5T_COMPOUND {
|
||||
H5T_STD_I32BE "a_name";
|
||||
@ -44,8 +44,7 @@ GROUP "/" {
|
||||
}
|
||||
GROUP "group1" {
|
||||
DATASET "dset2" {
|
||||
DATATYPE "/type1"
|
||||
|
||||
DATATYPE "/type1"
|
||||
DATASPACE SIMPLE { ( 5 ) / ( 5 ) }
|
||||
DATA {
|
||||
{
|
||||
@ -71,8 +70,7 @@ GROUP "/" {
|
||||
}
|
||||
}
|
||||
DATASET "dset3" {
|
||||
DATATYPE "/type2"
|
||||
|
||||
DATATYPE "/type2"
|
||||
DATASPACE SIMPLE { ( 3, 6 ) / ( 3, 6 ) }
|
||||
DATA {
|
||||
{
|
||||
@ -222,8 +220,7 @@ GROUP "/" {
|
||||
}
|
||||
}
|
||||
DATASET "dset4" {
|
||||
DATATYPE "/group1/type3"
|
||||
|
||||
DATATYPE "/group1/type3"
|
||||
DATASPACE SIMPLE { ( 5 ) / ( 5 ) }
|
||||
DATA {
|
||||
{
|
||||
@ -248,14 +245,14 @@ GROUP "/" {
|
||||
}
|
||||
}
|
||||
}
|
||||
DATATYPE "type3"
|
||||
DATATYPE "type3" H5T_COMPOUND {
|
||||
H5T_STD_I32BE "int";
|
||||
H5T_IEEE_F32BE "float";
|
||||
|
||||
}
|
||||
}
|
||||
GROUP "group2" {
|
||||
DATASET "dset5" {
|
||||
DATATYPE "/#6632:0"
|
||||
DATATYPE "/#6632:0"
|
||||
|
||||
DATASPACE SIMPLE { ( 5 ) / ( 5 ) }
|
||||
DATA {
|
||||
@ -282,13 +279,13 @@ GROUP "/" {
|
||||
}
|
||||
}
|
||||
}
|
||||
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";
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -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";
|
||||
|
||||
}
|
||||
}
|
||||
|
@ -7,7 +7,7 @@ DATATYPE "/#5992:0"
|
||||
|
||||
GROUP "/group2" {
|
||||
DATASET "dset5" {
|
||||
DATATYPE "/#6632:0"
|
||||
DATATYPE "/#6632:0"
|
||||
|
||||
DATASPACE SIMPLE { ( 5 ) / ( 5 ) }
|
||||
DATA {
|
||||
|
Loading…
x
Reference in New Issue
Block a user