diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2012-10-10 21:08:44 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2012-10-10 21:08:44 (GMT) |
commit | 348e91e02fdeb3b1256e7c1e8a466392aed387f2 (patch) | |
tree | 8f02b3ddbd9704c99d7df79883e7adb0b733fc34 /tools/h5dump | |
parent | 10ab09069deccfcf24bc224932e0271c55a6e6b9 (diff) | |
download | hdf5-348e91e02fdeb3b1256e7c1e8a466392aed387f2.zip hdf5-348e91e02fdeb3b1256e7c1e8a466392aed387f2.tar.gz hdf5-348e91e02fdeb3b1256e7c1e8a466392aed387f2.tar.bz2 |
[svn-r22881] Correct datatype of scalar array of doubles
Tested: local linux
Diffstat (limited to 'tools/h5dump')
-rw-r--r-- | tools/h5dump/h5dumpgentest.c | 4 | ||||
-rw-r--r-- | tools/h5dump/testh5dump.sh.in | 6 |
2 files changed, 4 insertions, 6 deletions
diff --git a/tools/h5dump/h5dumpgentest.c b/tools/h5dump/h5dumpgentest.c index e26ee40..1bbb9f9 100644 --- a/tools/h5dump/h5dumpgentest.c +++ b/tools/h5dump/h5dumpgentest.c @@ -8298,7 +8298,7 @@ gent_intscalars(void) /* Double Dummy set for failure tests */ dims[0] = F73_XDIM; dims[1] = F73_YDIM8; space = H5Screate(H5S_SCALAR); - tid = H5Tarray_create2(H5T_IEEE_F64BE, F73_ARRAY_RANK, dims); + tid = H5Tarray_create2(H5T_NATIVE_DOUBLE, F73_ARRAY_RANK, dims); dataset = H5Dcreate2(fid, F73_DUMMYDBL, tid, space, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); for(i = 0; i < dims[0]; i++) @@ -8497,7 +8497,7 @@ gent_attr_intscalars(void) /* Double Dummy set for failure tests */ dims[0] = F73_XDIM; dims[1] = F73_YDIM8; space = H5Screate(H5S_SCALAR); - tid = H5Tarray_create2(H5T_IEEE_F64BE, F73_ARRAY_RANK, dims); + tid = H5Tarray_create2(H5T_NATIVE_DOUBLE, F73_ARRAY_RANK, dims); attr = H5Acreate2(root, F73_DUMMYDBL, tid, space, H5P_DEFAULT, H5P_DEFAULT); for(i = 0; i < dims[0]; i++) diff --git a/tools/h5dump/testh5dump.sh.in b/tools/h5dump/testh5dump.sh.in index f1eaf0c..c90c364 100644 --- a/tools/h5dump/testh5dump.sh.in +++ b/tools/h5dump/testh5dump.sh.in @@ -683,15 +683,13 @@ TOOLTEST packedbits.ddl --enable-error-stack packedbits.h5 # test for compound signed/unsigned datasets TOOLTEST tcmpdintsize.ddl --enable-error-stack tcmpdintsize.h5 # test for signed/unsigned scalar datasets -# TODO: failed on mac with intel compiler. (Allen will work on it) -#TOOLTEST tscalarintsize.ddl --enable-error-stack tscalarintsize.h5 +TOOLTEST tscalarintsize.ddl --enable-error-stack tscalarintsize.h5 # test for signed/unsigned attributes TOOLTEST tattrintsize.ddl --enable-error-stack tattrintsize.h5 # test for compound signed/unsigned attributes TOOLTEST tcmpdattrintsize.ddl --enable-error-stack tcmpdattrintsize.h5 # test for signed/unsigned scalar attributes -# TODO: failed on mac with intel compiler. (Allen will work on it) -#TOOLTEST tscalarattrintsize.ddl --enable-error-stack tscalarattrintsize.h5 +TOOLTEST tscalarattrintsize.ddl --enable-error-stack tscalarattrintsize.h5 # test for displaying groups TOOLTEST tgroup-1.ddl --enable-error-stack tgroup.h5 # test for displaying the selected groups |