diff options
author | Raymond Lu <songyulu@hdfgroup.org> | 2006-03-22 21:43:24 (GMT) |
---|---|---|
committer | Raymond Lu <songyulu@hdfgroup.org> | 2006-03-22 21:43:24 (GMT) |
commit | 9a560ba31a34ba169e8c46310ca91e04d66d230a (patch) | |
tree | 9998f72e491232502e4496205750879718459f3d | |
parent | cbfc669139d2f205a280fbf1c4c877025d22720b (diff) | |
download | hdf5-9a560ba31a34ba169e8c46310ca91e04d66d230a.zip hdf5-9a560ba31a34ba169e8c46310ca91e04d66d230a.tar.gz hdf5-9a560ba31a34ba169e8c46310ca91e04d66d230a.tar.bz2 |
[svn-r12137] Purpose: Update
Description: OpenVMS doesn't support denormalized floating-point values.
Disable the denormalized and special values for floating to floating-point
tests.
Platforms tested: OpenVMS - the only concerned machine.
Misc. update:
-rw-r--r-- | test/dt_arith.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/dt_arith.c b/test/dt_arith.c index d7e1704..52673e1 100644 --- a/test/dt_arith.c +++ b/test/dt_arith.c @@ -4833,6 +4833,7 @@ run_fp_tests(const char *name) nerrors += test_conv_flt_1(name, TEST_NORMAL, H5T_NATIVE_LDOUBLE, H5T_NATIVE_DOUBLE); #endif +#ifndef H5_VMS /*Test denormalized values. TEST_DENORM indicates denormalized values.*/ nerrors += test_conv_flt_1(name, TEST_DENORM, H5T_NATIVE_FLOAT, H5T_NATIVE_DOUBLE); nerrors += test_conv_flt_1(name, TEST_DENORM, H5T_NATIVE_DOUBLE, H5T_NATIVE_FLOAT); @@ -4852,6 +4853,7 @@ run_fp_tests(const char *name) nerrors += test_conv_flt_1(name, TEST_SPECIAL, H5T_NATIVE_LDOUBLE, H5T_NATIVE_FLOAT); nerrors += test_conv_flt_1(name, TEST_SPECIAL, H5T_NATIVE_LDOUBLE, H5T_NATIVE_DOUBLE); #endif +#endif /*H5_VMS*/ done: return nerrors; |