diff options
Diffstat (limited to 'tools/testfiles/tcomp-1.ddl')
-rw-r--r-- | tools/testfiles/tcomp-1.ddl | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/tools/testfiles/tcomp-1.ddl b/tools/testfiles/tcomp-1.ddl new file mode 100644 index 0000000..172eb3e --- /dev/null +++ b/tools/testfiles/tcomp-1.ddl @@ -0,0 +1,65 @@ +############################# +Expected output for '../h5dump tcompound.h5' +############################# +HDF5 "tcompound.h5" { +GROUP "/" { + DATATYPE "#3432:0" { + H5T_STD_I32BE int; + H5T_IEEE_F32BE float; + } + DATASET "dset1" { + DATATYPE { + H5T_STD_I32BE a_name; + H5T_IEEE_F32BE b_name; + H5T_IEEE_F64BE c_name; + } + DATASPACE { ARRAY ( 5 ) ( 5 ) } + DATA { + {0,0,1}, {1,1,0.5}, {2,4,0.333333}, {3,9,0.25}, {4,16,0.2} + } + } + GROUP "group1" { + DATASET "dset2" { + DATATYPE { + HARDLINK { "/type1" } + } + DATASPACE { ARRAY ( 5 ) ( 5 ) } + DATA { + {0,0}, {1,1.1}, {2,2.2}, {3,3.3}, {4,4.4} + } + } + DATASET "dset4" { + DATATYPE { + HARDLINK { "/group1/type3" } + } + DATASPACE { ARRAY ( 5 ) ( 5 ) } + DATA { + {0,0}, {1,1}, {2,2}, {3,3}, {4,4} + } + } + DATATYPE "type3" { + H5T_STD_I32BE int; + H5T_IEEE_F32BE float; + } + } + GROUP "group2" { + DATASET "dset5" { + DATATYPE { + HARDLINK { "#3432:0" } + } + DATASPACE { ARRAY ( 5 ) ( 5 ) } + DATA { + {0,0}, {1,1}, {2,2}, {3,3}, {4,4} + } + } + } + DATATYPE "type1" { + H5T_STD_I32BE int_name; + H5T_IEEE_F32BE float_name; + } + DATATYPE "type2" { + H5T_STD_I32BE int_array[4]; + H5T_STD_I32BE float_array[5][6]; + } +} +} |