summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2015-03-19 20:15:45 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2015-03-19 20:15:45 (GMT)
commitcac405283f0dd6e6aa528cd86303429ec9bb3fd2 (patch)
tree94bd20a27de0ae52da7cefd4f0106c97b1d6d0b4 /test
parentae9069e469ce3901ff6ac225afe3b1e35d88c6eb (diff)
downloadhdf5-cac405283f0dd6e6aa528cd86303429ec9bb3fd2.zip
hdf5-cac405283f0dd6e6aa528cd86303429ec9bb3fd2.tar.gz
hdf5-cac405283f0dd6e6aa528cd86303429ec9bb3fd2.tar.bz2
[svn-r26483] Description:
Remove INTEGER_TO_LDOUBLE_ACCURATE macro/define - we no longer support SGI systems. Tested on: Mac OSX/64 10.10.2 (amazon) w/serial & parallel (h5committest not required on this branch)
Diffstat (limited to 'test')
-rw-r--r--test/dt_arith.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/test/dt_arith.c b/test/dt_arith.c
index db38c66..305fdd0 100644
--- a/test/dt_arith.c
+++ b/test/dt_arith.c
@@ -5144,7 +5144,6 @@ run_int_fp_conv(const char *name)
#endif /* H5_ULLONG_TO_FP_CAST_WORKS */
#endif
-#if H5_INTEGER_TO_LDOUBLE_ACCURATE
#if H5_SIZEOF_LONG_DOUBLE!=H5_SIZEOF_DOUBLE
nerrors += test_conv_int_fp(name, TEST_NORMAL, H5T_NATIVE_SCHAR, H5T_NATIVE_LDOUBLE);
nerrors += test_conv_int_fp(name, TEST_NORMAL, H5T_NATIVE_UCHAR, H5T_NATIVE_LDOUBLE);
@@ -5201,22 +5200,6 @@ run_int_fp_conv(const char *name)
#endif /* H5_ULLONG_TO_FP_CAST_WORKS && H5_ULLONG_TO_LDOUBLE_PRECISION && H5_LLONG_TO_LDOUBLE_CORRECT */
#endif
#endif
-#else /*H5_INTEGER_TO_LDOUBLE_ACCURATE*/
- {
- char str[256]; /*string */
-
- HDsnprintf(str, sizeof(str), "Testing %s %s -> %s conversions",
- name, "all integers", "long double");
- 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_INTEGER_TO_LDOUBLE_ACCURATE*/
return nerrors;
}