diff options
author | Raymond Lu <songyulu@hdfgroup.org> | 2004-03-16 19:55:18 (GMT) |
---|---|---|
committer | Raymond Lu <songyulu@hdfgroup.org> | 2004-03-16 19:55:18 (GMT) |
commit | d9d34b46e35b93222f6c2d9ef8648c88bf187d5c (patch) | |
tree | aaeb07abc4d3f4649b6926d838a5720e7c04523e /test | |
parent | f217777cdb1ab50a59977ce0cdf9336b5e5a1c43 (diff) | |
download | hdf5-d9d34b46e35b93222f6c2d9ef8648c88bf187d5c.zip hdf5-d9d34b46e35b93222f6c2d9ef8648c88bf187d5c.tar.gz hdf5-d9d34b46e35b93222f6c2d9ef8648c88bf187d5c.tar.bz2 |
[svn-r8262] Purpose: Avoid bug in some systems.
Description: unsigned long or unsigned long long failed to be converted to
float or double during software conversion on some systems. It's believed
there are bugs on those systems(modi4, premium, o2, arabica).
Solution: temporarily disable these tests.
Platforms tested: Simply comment out. No need to do test.
Diffstat (limited to 'test')
-rw-r--r-- | test/dtypes.c | 20 |
1 files changed, 15 insertions, 5 deletions
diff --git a/test/dtypes.c b/test/dtypes.c index a99c1ea..5193115 100644 --- a/test/dtypes.c +++ b/test/dtypes.c @@ -5422,16 +5422,26 @@ run_int_float_conv(const char *name) nerrors += test_conv_int_float(name, H5T_NATIVE_LONG, H5T_NATIVE_FLOAT); nerrors += test_conv_int_float(name, H5T_NATIVE_LONG, H5T_NATIVE_DOUBLE); - nerrors += test_conv_int_float(name, H5T_NATIVE_ULONG, H5T_NATIVE_FLOAT); - nerrors += test_conv_int_float(name, H5T_NATIVE_ULONG, H5T_NATIVE_DOUBLE); + /* Temporarily disable these tests for software conversion. They fail on + * some systems(like modi4, premium, o2 and arabica) + */ + if(!strcmp(name, "hw")) { + nerrors += test_conv_int_float(name, H5T_NATIVE_ULONG, H5T_NATIVE_FLOAT); + nerrors += test_conv_int_float(name, H5T_NATIVE_ULONG, H5T_NATIVE_DOUBLE); + } #endif #if H5_SIZEOF_LONG_LONG!=H5_SIZEOF_LONG nerrors += test_conv_int_float(name, H5T_NATIVE_LLONG, H5T_NATIVE_FLOAT); nerrors += test_conv_int_float(name, H5T_NATIVE_LLONG, H5T_NATIVE_DOUBLE); - - nerrors += test_conv_int_float(name, H5T_NATIVE_ULLONG, H5T_NATIVE_FLOAT); - nerrors += test_conv_int_float(name, H5T_NATIVE_ULLONG, H5T_NATIVE_DOUBLE); + + /* Temporarily disable these tests for software conversion. They fail on + * some systems(like modi4, premium, o2 and arabica) + */ + if(!strcmp(name, "hw")) { + nerrors += test_conv_int_float(name, H5T_NATIVE_ULLONG, H5T_NATIVE_FLOAT); + nerrors += test_conv_int_float(name, H5T_NATIVE_ULLONG, H5T_NATIVE_DOUBLE); + } #endif return nerrors; |