mirror of
https://github.com/HDFGroup/hdf5.git
synced 2024-12-03 02:32:04 +08:00
65ed9f9b8a
Updated Description: Updated test results for the h5dumper's XML option. The tool now conforms with the fixes implemented in the 1.4 branch. Platforms tested: Linux
60 lines
1.7 KiB
XML
60 lines
1.7 KiB
XML
#############################
|
|
Expected output for 'h5dump --xml tenum.h5'
|
|
#############################
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE HDF5-File PUBLIC "HDF5-File.dtd" "http://hdf.ncsa.uiuc.edu/DTDs/HDF5-File.dtd">
|
|
<HDF5-File>
|
|
<RootGroup OBJ-XID="root">
|
|
<NamedDataType Name="enum normal" OBJ-XID="/enum normal" Parents="root">
|
|
<AtomicType>
|
|
<EnumType Nelems="5">
|
|
<EnumElement>
|
|
RED
|
|
</EnumElement>
|
|
<EnumValue>
|
|
0
|
|
</EnumValue>
|
|
<EnumElement>
|
|
GREEN
|
|
</EnumElement>
|
|
<EnumValue>
|
|
1
|
|
</EnumValue>
|
|
<EnumElement>
|
|
BLUE
|
|
</EnumElement>
|
|
<EnumValue>
|
|
2
|
|
</EnumValue>
|
|
<EnumElement>
|
|
WHITE
|
|
</EnumElement>
|
|
<EnumValue>
|
|
3
|
|
</EnumValue>
|
|
<EnumElement>
|
|
BLACK
|
|
</EnumElement>
|
|
<EnumValue>
|
|
4
|
|
</EnumValue>
|
|
</EnumType>
|
|
</AtomicType>
|
|
</NamedDataType>
|
|
<Dataset Name="table" OBJ-XID="/table" Parents="root">
|
|
<Dataspace>
|
|
<SimpleDataspace Ndims="1">
|
|
<Dimension DimSize="20" MaxDimSize="20"/>
|
|
</SimpleDataspace>
|
|
</Dataspace>
|
|
<NamedDataTypePtr OBJ-XID="/enum normal"/>
|
|
<Data>
|
|
<DataFromFile>
|
|
RED GREEN BLUE GREEN WHITE WHITE BLACK GREEN BLUE RED RED BLUE GREEN
|
|
BLACK WHITE RED WHITE GREEN GREEN BLUE
|
|
</DataFromFile>
|
|
</Data>
|
|
</Dataset>
|
|
</RootGroup>
|
|
</HDF5-File>
|