summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2015-03-19 22:12:58 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2015-03-19 22:12:58 (GMT)
commit54e68fe6894b1f3ce6f14f715f9375419e583ea9 (patch)
treeb1ec2580f3246f8f34ff6eba297ab7405a5ad581 /test
parentd63acf93b96364d65f10856c02aab7dc305e929a (diff)
downloadhdf5-54e68fe6894b1f3ce6f14f715f9375419e583ea9.zip
hdf5-54e68fe6894b1f3ce6f14f715f9375419e583ea9.tar.gz
hdf5-54e68fe6894b1f3ce6f14f715f9375419e583ea9.tar.bz2
[svn-r26494] Description:
Remove the LDOUBLE_TO_UINT_ACCURATE macro/define, it was addressing problems with older Intel compilers on Linux that are no longer supported. Tested on: MacOSX/64 10.10.2 (amazon) w/serial & parallel (h5committest not required on this branch)
Diffstat (limited to 'test')
-rw-r--r--test/dt_arith.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/test/dt_arith.c b/test/dt_arith.c
index b2ec03f..4964383 100644
--- a/test/dt_arith.c
+++ b/test/dt_arith.c
@@ -5278,23 +5278,7 @@ run_fp_int_conv(const char *name)
nerrors += test_conv_int_fp(name, test_values, H5T_NATIVE_LDOUBLE, H5T_NATIVE_SHORT);
nerrors += test_conv_int_fp(name, test_values, H5T_NATIVE_LDOUBLE, H5T_NATIVE_USHORT);
nerrors += test_conv_int_fp(name, test_values, H5T_NATIVE_LDOUBLE, H5T_NATIVE_INT);
-#if H5_LDOUBLE_TO_UINT_ACCURATE
nerrors += test_conv_int_fp(name, test_values, H5T_NATIVE_LDOUBLE, H5T_NATIVE_UINT);
-#else /*H5_LDOUBLE_TO_UINT_ACCURATE*/
- {
- char str[256]; /*string */
-
- HDsnprintf(str, sizeof(str), "Testing %s %s -> %s conversions",
- name, "long double", "unsigned int");
- printf("%-70s", str);
- SKIPPED();
-#if H5_SIZEOF_LONG_DOUBLE!=0
- HDputs(" Test skipped due to hardware conversion error.");
-#else
- HDputs(" Test skipped due to disabled long double.");
-#endif
- }
-#endif /*H5_LDOUBLE_TO_UINT_ACCURATE*/
#if H5_SIZEOF_LONG!=H5_SIZEOF_INT && H5_SIZEOF_LONG_DOUBLE!=0
#ifndef H5_LDOUBLE_TO_LONG_SPECIAL
nerrors += test_conv_int_fp(name, test_values, H5T_NATIVE_LDOUBLE, H5T_NATIVE_LONG);