diff options
author | Patrick Lu <ptlu@hawkwind.ncsa.uiuc.edu> | 2000-02-17 15:31:41 (GMT) |
---|---|---|
committer | Patrick Lu <ptlu@hawkwind.ncsa.uiuc.edu> | 2000-02-17 15:31:41 (GMT) |
commit | 3780223f33c7a61fee084cd0db3adc1ab671f90c (patch) | |
tree | 9bb4767f867414036b535e7a6c154cde34e2dfd9 /tools | |
parent | 232a032d54fb20304b9a2fd6961cfbc7fd3b6ff8 (diff) | |
download | hdf5-3780223f33c7a61fee084cd0db3adc1ab671f90c.zip hdf5-3780223f33c7a61fee084cd0db3adc1ab671f90c.tar.gz hdf5-3780223f33c7a61fee084cd0db3adc1ab671f90c.tar.bz2 |
[svn-r1970] updated the ddl.
removed a bug that was there before
Diffstat (limited to 'tools')
-rw-r--r-- | tools/testfiles/tobjref.ddl | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/tools/testfiles/tobjref.ddl b/tools/testfiles/tobjref.ddl index 2073318..97f64be 100644 --- a/tools/testfiles/tobjref.ddl +++ b/tools/testfiles/tobjref.ddl @@ -1,6 +1,3 @@ -############################# -Expected output for 'h5dump tobjref.h5' -############################# HDF5 "tobjref.h5" { GROUP "/" { DATASET "Dataset3" { @@ -12,14 +9,14 @@ GROUP "/" { } GROUP "Group1" { DATASET "Dataset1" { - DATATYPE { H5T_STD_U32LE } + DATATYPE { H5T_STD_U32BE } DATASPACE { SIMPLE ( 4 ) / ( 4 ) } DATA { - 0, 50331648, 100663296, 150994944 + 0, 3, 6, 9 } } DATASET "Dataset2" { - DATATYPE { H5T_STD_U8LE } + DATATYPE { H5T_STD_U8BE } DATASPACE { SIMPLE ( 4 ) / ( 4 ) } DATA { 0, 0, 0, 0 @@ -27,7 +24,7 @@ GROUP "/" { } DATATYPE "Datatype1" { H5T_STD_I32BE "a"; - H5T_STD_I32BE "b"; + H5T_IEEE_F32BE "b"; H5T_IEEE_F32BE "c"; } } |