summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2015-03-23 19:50:39 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2015-03-23 19:50:39 (GMT)
commitfe435e3dd4d03524a5387cd7e872350a314c3d92 (patch)
tree5e0c7ade0fd9c2c9d40f1f311be7f1f1e26d4ea4 /test
parent7bfec19a02c63504a8db31e3f3163842a20afb25 (diff)
downloadhdf5-fe435e3dd4d03524a5387cd7e872350a314c3d92.zip
hdf5-fe435e3dd4d03524a5387cd7e872350a314c3d92.tar.gz
hdf5-fe435e3dd4d03524a5387cd7e872350a314c3d92.tar.bz2
[svn-r26543] Description:
Remove the LLONG_TO_LDOUBLE_CORRECT macro/define, it's working around bugs in very old SGI/FreeBSD/Windows compilers. Tested on: MacOSX/64 10.10.2 (amazon) w/serial & parallel (h5committest not needed on this branch)
Diffstat (limited to 'test')
-rw-r--r--test/dt_arith.c24
1 files changed, 0 insertions, 24 deletions
diff --git a/test/dt_arith.c b/test/dt_arith.c
index c8db431..5848864 100644
--- a/test/dt_arith.c
+++ b/test/dt_arith.c
@@ -5032,32 +5032,8 @@ run_int_fp_conv(const char *name)
#endif
#endif /* H5_SIZEOF_LONG!=H5_SIZEOF_INT */
#if H5_SIZEOF_LONG_LONG!=H5_SIZEOF_LONG
-#if H5_LLONG_TO_LDOUBLE_CORRECT
nerrors += test_conv_int_fp(name, TEST_NORMAL, H5T_NATIVE_LLONG, H5T_NATIVE_LDOUBLE);
-#else /* H5_LLONG_TO_LDOUBLE_CORRECT */
- {
- char str[256]; /*hello string */
-
- HDsnprintf(str, sizeof(str), "Testing %s %s -> %s conversions",
- name, "long long", "long double");
- printf("%-70s", str);
- SKIPPED();
- HDputs(" Test skipped due to compiler error in handling conversion.");
- }
-#endif /* H5_LLONG_TO_LDOUBLE_CORRECT */
-#if H5_LLONG_TO_LDOUBLE_CORRECT
nerrors += test_conv_int_fp(name, TEST_NORMAL, H5T_NATIVE_ULLONG, H5T_NATIVE_LDOUBLE);
-#else /* H5_LLONG_TO_LDOUBLE_CORRECT */
- {
- char str[256]; /*hello string */
-
- HDsnprintf(str, sizeof(str), "Testing %s %s -> %s conversions",
- name, "unsigned long long", "long double");
- printf("%-70s", str);
- SKIPPED();
- HDputs(" Test skipped due to compiler not handling conversion.");
- }
-#endif /* H5_LLONG_TO_LDOUBLE_CORRECT */
#endif
#endif