diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2000-11-16 17:45:46 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2000-11-16 17:45:46 (GMT) |
commit | 0a4d1506e06bb061c10561f7726109b2740c0188 (patch) | |
tree | 42fdf4886cb44dfe61e42ebad8c374ea6174b6c0 /tools | |
parent | 4fe7973b5c7e444179fa45fc56a864d8e838f048 (diff) | |
download | hdf5-0a4d1506e06bb061c10561f7726109b2740c0188.zip hdf5-0a4d1506e06bb061c10561f7726109b2740c0188.tar.gz hdf5-0a4d1506e06bb061c10561f7726109b2740c0188.tar.bz2 |
[svn-r2948] Purpose:
Bug fix
Description:
I was writing things out to the HDF file in big-endian format
without doing any conversions on the data or anything like that.
This was causing tests to fail on most machines
Solution:
Removed the big-endian craziness...But, this kinda resulted in a
bug in the HDF dumper which Albert and Robb suggested ways of
fixing.
Platforms tested:
Linux
Diffstat (limited to 'tools')
-rw-r--r-- | tools/testfiles/tvldtypes.ddl | 32 | ||||
-rw-r--r-- | tools/testfiles/tvldtypes.h5 | bin | 8480 -> 8336 bytes |
2 files changed, 0 insertions, 32 deletions
diff --git a/tools/testfiles/tvldtypes.ddl b/tools/testfiles/tvldtypes.ddl index 8916a6b..16ab380 100644 --- a/tools/testfiles/tvldtypes.ddl +++ b/tools/testfiles/tvldtypes.ddl @@ -13,16 +13,6 @@ GROUP "/" { 30, 31, 32, 33 } } - DATASET "Dataset1.5" { - DATATYPE { H5T_VLEN of H5T_STD_I32BE } - DATASPACE { SIMPLE ( 4 ) / ( 4 ) } - DATA { - 0 - 167772160, 184549376 - 335544320, 352321536, 369098752 - 503316480, 520093696, 536870912, 553648128 - } - } DATASET "Dataset2.0" { DATATYPE { H5T_VLEN of H5T_IEEE_F32LE } DATASPACE { SIMPLE ( 4 ) / ( 4 ) } @@ -33,16 +23,6 @@ GROUP "/" { 30, 30.1, 30.2, 30.3 } } - DATASET "Dataset2.5" { - DATATYPE { H5T_VLEN of H5T_IEEE_F32BE } - DATASPACE { SIMPLE ( 4 ) / ( 4 ) } - DATA { - 0 - 1.15705e-41, -6.3333e-23 - 5.74883e-41, -4.29132e+08, -6.35398e-23 - 8.61869e-41, -4.29787e+08, -6.36691e-23, 2.72653e+23 - } - } DATASET "Dataset3.0" { DATATYPE { H5T_VLEN of H5T_STD_I32LE } DATASPACE { SCALAR } @@ -51,17 +31,5 @@ GROUP "/" { 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72 } } - DATASET "Dataset3.5" { - DATATYPE { H5T_VLEN of H5T_STD_I32BE } - DATASPACE { SCALAR } - DATA { - 0, 33554432, 67108864, 100663296, 134217728, 167772160, 201326592, - 234881024, 268435456, 301989888, 335544320, 369098752, 402653184, - 436207616, 469762048, 503316480, 536870912, 570425344, 603979776, - 637534208, 671088640, 704643072, 738197504, 771751936, 805306368, - 838860800, 872415232, 905969664, 939524096, 973078528, 1006632960, - 1040187392, 1073741824, 1107296256, 1140850688, 1174405120, 1207959552 - } - } } } diff --git a/tools/testfiles/tvldtypes.h5 b/tools/testfiles/tvldtypes.h5 Binary files differindex 36820e3..df31249 100644 --- a/tools/testfiles/tvldtypes.h5 +++ b/tools/testfiles/tvldtypes.h5 |