summaryrefslogtreecommitdiffstats
path: root/tools/testfiles/thlink.h5.xml
diff options
context:
space:
mode:
authorRobert E. McGrath <mcgrath@ncsa.uiuc.edu>2001-02-23 22:07:15 (GMT)
committerRobert E. McGrath <mcgrath@ncsa.uiuc.edu>2001-02-23 22:07:15 (GMT)
commit9dfe1289211092adf5d951f8d9005b83f81af9a0 (patch)
treef9e8f29bdb4b8ce7ef7e74b6d87fa1bf77510aa2 /tools/testfiles/thlink.h5.xml
parentd6a4d2a3d6e641a18efd25b6e0bf9e632dfba149 (diff)
downloadhdf5-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.xml42
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>