From 9a560ba31a34ba169e8c46310ca91e04d66d230a Mon Sep 17 00:00:00 2001 From: Raymond Lu Date: Wed, 22 Mar 2006 16:43:24 -0500 Subject: [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: --- test/dt_arith.c | 2 ++ 1 file changed, 2 insertions(+) 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; -- cgit v0.12