From a2c349d32ae124015638fe6b0e36e1d37a66e54b Mon Sep 17 00:00:00 2001 From: Raymond Lu Date: Fri, 6 Feb 2004 16:57:34 -0500 Subject: [svn-r8159] Purpose: Disable a test. Description: Temporarily disable float(or double) - unsigned long long software conversion because there is a bug in pgcc compiler. Will enable it once the problem is solved. Platforms tested: RH 8 --- test/dtypes.c | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/test/dtypes.c b/test/dtypes.c index 8b03a68..b20778b 100644 --- a/test/dtypes.c +++ b/test/dtypes.c @@ -5488,9 +5488,15 @@ run_float_int_conv(const char *name) #if H5_SIZEOF_LONG_LONG!=H5_SIZEOF_LONG nerrors += test_conv_int_float(name, H5T_NATIVE_FLOAT, H5T_NATIVE_LLONG); nerrors += test_conv_int_float(name, H5T_NATIVE_DOUBLE, H5T_NATIVE_LLONG); - - nerrors += test_conv_int_float(name, H5T_NATIVE_FLOAT, H5T_NATIVE_ULLONG); - nerrors += test_conv_int_float(name, H5T_NATIVE_DOUBLE, H5T_NATIVE_ULLONG); + + /* Temporarily disable these two tests for software conversion because of + * the bug in pgcc compiler. + * Will turn it back once the problem is solved. + */ + if(!strcmp(name, "hw")) { + nerrors += test_conv_int_float(name, H5T_NATIVE_FLOAT, H5T_NATIVE_ULLONG); + nerrors += test_conv_int_float(name, H5T_NATIVE_DOUBLE, H5T_NATIVE_ULLONG); + } #endif #endif /*TMP*/ -- cgit v0.12