diff options
author | Raymond Lu <songyulu@hdfgroup.org> | 2004-05-11 20:26:35 (GMT) |
---|---|---|
committer | Raymond Lu <songyulu@hdfgroup.org> | 2004-05-11 20:26:35 (GMT) |
commit | 980683f1e1373f82e20d93846c138c4dc45952e0 (patch) | |
tree | 3526fed8b2ab647f0ca39f12cc118c64c733111f /test | |
parent | 44cb906eb77e050c6187152592fa5418eba6e075 (diff) | |
download | hdf5-980683f1e1373f82e20d93846c138c4dc45952e0.zip hdf5-980683f1e1373f82e20d93846c138c4dc45952e0.tar.gz hdf5-980683f1e1373f82e20d93846c138c4dc45952e0.tar.bz2 |
[svn-r8505] *** empty log message ***
Diffstat (limited to 'test')
-rw-r--r-- | test/dtypes.c | 24 |
1 files changed, 6 insertions, 18 deletions
diff --git a/test/dtypes.c b/test/dtypes.c index 4310cb9..99731ae 100644 --- a/test/dtypes.c +++ b/test/dtypes.c @@ -4530,20 +4530,6 @@ test_conv_int_float(const char *name, hid_t src, hid_t dst) } /* end if */ #endif /* end H5_ULONG_FP_BOTTOM_BIT_WORKS */ -/* For PGI compiler on Linux, during conversion from 'float' or 'double' to - * 'unsigned long long', round-up happens when the fraction of float-point - * value is greater than 0.5. So we allow the converted value to be off by 1. - */ -#ifndef H5_FP_TO_ULLONG_BOTTOM_BIT_WORKS - if((src_type==FLT_FLOAT || src_type==FLT_DOUBLE) && dst_type==INT_ULLONG) { - unsigned long_long tmp_s, tmp_h; - HDmemcpy(&tmp_s,&buf[j*dst_size],sizeof(unsigned long_long)); - HDmemcpy(&tmp_h,&hw[0],sizeof(unsigned long_long)); - if((tmp_s+1)==tmp_h) - continue; /*no error*/ - } -#endif /*end H5_FP_TO_ULLONG_BOTTOM_BIT_WORKS*/ - /* Print errors */ if (0==fails_this_test++) H5_FAILED(); @@ -5678,9 +5664,11 @@ run_float_int_conv(const char *name) nerrors += test_conv_int_float(name, H5T_NATIVE_FLOAT, H5T_NATIVE_LLONG); nerrors += test_conv_int_float(name, H5T_NATIVE_DOUBLE, H5T_NATIVE_LLONG); + +#ifdef H5_FP_TO_ULLONG_RIGHT_MAXIMUM nerrors += test_conv_int_float(name, H5T_NATIVE_FLOAT, H5T_NATIVE_ULLONG); nerrors += test_conv_int_float(name, H5T_NATIVE_DOUBLE, H5T_NATIVE_ULLONG); -#ifdef LATER +#else /*H5_FP_TO_ULLONG_RIGHT_MAXIMUM*/ { char str[256]; /*hello string */ @@ -5688,15 +5676,15 @@ run_float_int_conv(const char *name) name, "float", "unsigned long long"); printf("%-70s", str); SKIPPED(); - HDputs(" Test skipped due to conversion being under construction."); + HDputs(" Test skipped due to hardware conversion error."); sprintf(str, "Testing random %s %s -> %s conversions", name, "double", "unsigned long long"); printf("%-70s", str); SKIPPED(); - HDputs(" Test skipped due to conversion being under construction."); + HDputs(" Test skipped due to hardware conversion error."); } -#endif /* LATER */ +#endif /*H5_FP_TO_ULLONG_RIGHT_MAXIMUM*/ #endif return nerrors; |