diff options
author | Robert E. McGrath <mcgrath@ncsa.uiuc.edu> | 2001-02-23 22:07:15 (GMT) |
---|---|---|
committer | Robert E. McGrath <mcgrath@ncsa.uiuc.edu> | 2001-02-23 22:07:15 (GMT) |
commit | 9dfe1289211092adf5d951f8d9005b83f81af9a0 (patch) | |
tree | f9e8f29bdb4b8ce7ef7e74b6d87fa1bf77510aa2 /tools/testfiles/thlink.h5.xml | |
parent | d6a4d2a3d6e641a18efd25b6e0bf9e632dfba149 (diff) | |
download | hdf5-9dfe1289211092adf5d951f8d9005b83f81af9a0.zip hdf5-9dfe1289211092adf5d951f8d9005b83f81af9a0.tar.gz hdf5-9dfe1289211092adf5d951f8d9005b83f81af9a0.tar.bz2 |
[svn-r3506]
Purpose:
Bug fix.
Description:
Order of elements in groups is wrong. (Need to find out why
h5gen accepted this at all.)
Note that test output had to be corrected in some cases.
Solution:
Fixed xml_dump_group to do the right order to match the DTD
Platforms tested:
Linux, solaris.
Diffstat (limited to 'tools/testfiles/thlink.h5.xml')
-rw-r--r-- | tools/testfiles/thlink.h5.xml | 42 |
1 files changed, 21 insertions, 21 deletions
diff --git a/tools/testfiles/thlink.h5.xml b/tools/testfiles/thlink.h5.xml index c116594..518ae3b 100644 --- a/tools/testfiles/thlink.h5.xml +++ b/tools/testfiles/thlink.h5.xml @@ -5,35 +5,35 @@ Expected output for 'h5dump --xml thlink.h5' <!DOCTYPE HDF5-File PUBLIC "HDF5-File.dtd" "http://hdf.ncsa.uiuc.edu/DTDs/HDF5-File.dtd"> <HDF5-File> <RootGroup OBJ-XID="root"> - <Dataset Name="dset1" OBJ-XID="/dset1" Parents="root"> - <Dataspace> - <SimpleDataspace Ndims="1"> - <Dimension DimSize="5" MaxDimSize="5"/> - </SimpleDataspace> - </Dataspace> - <DataType> - <AtomicType> - <IntegerType ByteOrder="BE" Sign="true" Size="4" /> - </AtomicType> - </DataType> - <Data> - <DataFromFile> - 0 1 2 3 4 - </DataFromFile> - </Data> - </Dataset> <Group Name="g1" OBJ-XID="/g1" Parents="/" > - <Dataset Name="dset2" OBJ-XID="/g1/dset2" Parents="/g1"> - <DatasetPtr OBJ-XID="/dset1"/> - </Dataset> <Group Name="g1.1" OBJ-XID="/g1/g1.1" Parents="/g1" > <Dataset Name="dset3" OBJ-XID="/g1/g1.1/dset3" Parents="/g1/g1.1"> - <DatasetPtr OBJ-XID="/dset1"/> + <Dataspace> + <SimpleDataspace Ndims="1"> + <Dimension DimSize="5" MaxDimSize="5"/> + </SimpleDataspace> + </Dataspace> + <DataType> + <AtomicType> + <IntegerType ByteOrder="BE" Sign="true" Size="4" /> + </AtomicType> + </DataType> + <Data> + <DataFromFile> + 0 1 2 3 4 + </DataFromFile> + </Data> </Dataset> </Group> + <Dataset Name="dset2" OBJ-XID="/g1/dset2" Parents="/g1"> + <DatasetPtr OBJ-XID="/g1/g1.1/dset3"/> + </Dataset> </Group> <Group Name="g2" OBJ-XID="/g2" Parents="/" > <GroupPtr OBJ-XID="/g1/g1.1"/> </Group> + <Dataset Name="dset1" OBJ-XID="/dset1" Parents="root"> + <DatasetPtr OBJ-XID="/g1/g1.1/dset3"/> + </Dataset> </RootGroup> </HDF5-File> |