diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2015-03-25 19:56:23 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2015-03-25 19:56:23 (GMT) |
commit | a877ab37b641f4bb3e63322b67805eb128626771 (patch) | |
tree | d83e5f81550f78bbafc998b436d7e3f34a3e12cb /test | |
parent | 5966f8ce26f03a57de337d1f4e853c0af1a7828c (diff) | |
download | hdf5-a877ab37b641f4bb3e63322b67805eb128626771.zip hdf5-a877ab37b641f4bb3e63322b67805eb128626771.tar.gz hdf5-a877ab37b641f4bb3e63322b67805eb128626771.tar.bz2 |
[svn-r26588] Description:
Bring r26560 from trunk 1.8 branch:
Bring r26483 from autotools_rework branch back to trunk:
Remove INTEGER_TO_LDOUBLE_ACCURATE macro/define - we no longer support
SGI systems.
Tested on:
Linux/32 2.6.18 (jam) w/serial & parallel
(daily tested for 2+ days)
Diffstat (limited to 'test')
-rw-r--r-- | test/dt_arith.c | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/test/dt_arith.c b/test/dt_arith.c index 5e48ee9..7bf203f 100644 --- a/test/dt_arith.c +++ b/test/dt_arith.c @@ -5173,7 +5173,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); @@ -5230,22 +5229,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; } |