From e1016ffdd0bcba9b5d575cc6822378a86caa2423 Mon Sep 17 00:00:00 2001 From: Quincey Koziol Date: Thu, 29 Apr 2004 15:33:43 -0500 Subject: [svn-r8435] Purpose: Temporarily disable float/double->unsigned long long conversion while I work on fix. Platforms tested: Linux 2.4 (verbena) too minor to require h5committest --- test/dtypes.c | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/test/dtypes.c b/test/dtypes.c index 96a3893..d10a070 100644 --- a/test/dtypes.c +++ b/test/dtypes.c @@ -5664,8 +5664,27 @@ run_float_int_conv(const char *name) nerrors += test_conv_int_float(name, H5T_NATIVE_FLOAT, H5T_NATIVE_LLONG); nerrors += test_conv_int_float(name, H5T_NATIVE_DOUBLE, H5T_NATIVE_LLONG); + +#ifdef LATER nerrors += test_conv_int_float(name, H5T_NATIVE_FLOAT, H5T_NATIVE_ULLONG); nerrors += test_conv_int_float(name, H5T_NATIVE_DOUBLE, H5T_NATIVE_ULLONG); +#else /* LATER */ + { + char str[256]; /*hello string */ + + sprintf(str, "Testing random %s %s -> %s conversions", + name, "float", "unsigned long long"); + printf("%-70s", str); + SKIPPED(); + HDputs(" Test skipped due to conversion being under construction."); + + sprintf(str, "Testing random %s %s -> %s conversions", + name, "double", "unsigned long long"); + printf("%-70s", str); + SKIPPED(); + HDputs(" Test skipped due to conversion being under construction."); + } +#endif /* LATER */ #endif return nerrors; -- cgit v0.12