summaryrefslogtreecommitdiffstats
path: root/test/dt_arith.c
diff options
context:
space:
mode:
authorRaymond Lu <songyulu@hdfgroup.org>2006-03-22 21:43:24 (GMT)
committerRaymond Lu <songyulu@hdfgroup.org>2006-03-22 21:43:24 (GMT)
commit9a560ba31a34ba169e8c46310ca91e04d66d230a (patch)
tree9998f72e491232502e4496205750879718459f3d /test/dt_arith.c
parentcbfc669139d2f205a280fbf1c4c877025d22720b (diff)
downloadhdf5-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:
Diffstat (limited to 'test/dt_arith.c')
-rw-r--r--test/dt_arith.c2
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;