diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2004-04-29 20:33:43 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2004-04-29 20:33:43 (GMT) |
commit | e1016ffdd0bcba9b5d575cc6822378a86caa2423 (patch) | |
tree | bfa1c2249b9ad61831fd28a85fa3c04ddbb751a8 /test | |
parent | 15af61fcc763db88811daf0d9c6b2e9641167793 (diff) | |
download | hdf5-e1016ffdd0bcba9b5d575cc6822378a86caa2423.zip hdf5-e1016ffdd0bcba9b5d575cc6822378a86caa2423.tar.gz hdf5-e1016ffdd0bcba9b5d575cc6822378a86caa2423.tar.bz2 |
[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
Diffstat (limited to 'test')
-rw-r--r-- | test/dtypes.c | 19 |
1 files changed, 19 insertions, 0 deletions
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; |