diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2015-03-20 19:08:33 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2015-03-20 19:08:33 (GMT) |
commit | 57393bc0483fe164d3c44129ff786e1333406ce2 (patch) | |
tree | 0667eaca010dc7d4d590620cb65ffa451fd8f84a /test | |
parent | 7dae7ce0b9964aeb1084d2413f8795216ea6aa58 (diff) | |
download | hdf5-57393bc0483fe164d3c44129ff786e1333406ce2.zip hdf5-57393bc0483fe164d3c44129ff786e1333406ce2.tar.gz hdf5-57393bc0483fe164d3c44129ff786e1333406ce2.tar.bz2 |
[svn-r26508] Description:
Remove HW_FP_TO_LLONG_NOT_WORKS macro/define, it was only addressing
Windows .NET 2003 compiler issues.
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.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/test/dt_arith.c b/test/dt_arith.c index eeb1524..5ff4116 100644 --- a/test/dt_arith.c +++ b/test/dt_arith.c @@ -5120,12 +5120,8 @@ run_fp_int_conv(const char *name) #if H5_SIZEOF_LONG_LONG!=H5_SIZEOF_LONG if(!strcmp(name, "hw")) { /* Hardware conversion */ - /* Windows .NET 2003 doesn't work for hardware conversion of this case. - * .NET should define this macro H5_HW_FP_TO_LLONG_NOT_WORKS. */ -#ifndef H5_HW_FP_TO_LLONG_NOT_WORKS nerrors += test_conv_int_fp(name, test_values, H5T_NATIVE_FLOAT, H5T_NATIVE_LLONG); nerrors += test_conv_int_fp(name, test_values, H5T_NATIVE_DOUBLE, H5T_NATIVE_LLONG); -#endif /*H5_HW_FP_TO_LLONG_NOT_WORKS*/ } else { /* Software conversion */ nerrors += test_conv_int_fp(name, test_values, H5T_NATIVE_FLOAT, H5T_NATIVE_LLONG); nerrors += test_conv_int_fp(name, test_values, H5T_NATIVE_DOUBLE, H5T_NATIVE_LLONG); |