summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2005-04-29 20:31:29 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2005-04-29 20:31:29 (GMT)
commit55f8e19fc7ba1b59f5b435a1e1949457907eff40 (patch)
tree4fa7070073fc856d1237271a5bb77f3f9170f107 /test
parentabe7368338f5700025b24dc14be377ca024b68a1 (diff)
downloadhdf5-55f8e19fc7ba1b59f5b435a1e1949457907eff40.zip
hdf5-55f8e19fc7ba1b59f5b435a1e1949457907eff40.tar.gz
hdf5-55f8e19fc7ba1b59f5b435a1e1949457907eff40.tar.bz2
[svn-r10699] Purpose:
Code cleanup Description: Switch name & logic from H5_LLONG_TO_FP_CAST_BROKEN to H5_LLONG_TO_FP_CAST_WORKS, to better match the rest of the library. Platforms tested: FreeBSD 4.11 (sleipnir) Too minor to require h5committest
Diffstat (limited to 'test')
-rw-r--r--test/dtransform.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/dtransform.c b/test/dtransform.c
index 3a160d8..3ae8520 100644
--- a/test/dtransform.c
+++ b/test/dtransform.c
@@ -247,7 +247,7 @@ int main(void)
TEST_TYPE_CONTIG(dxpl_id_c_to_f, long, H5T_NATIVE_LONG, "long", windchillFfloat, 1);
TEST_TYPE_CONTIG(dxpl_id_utrans_inv, unsigned long, H5T_NATIVE_ULONG, "ulong", transformData, 0);
-#ifndef H5_LLONG_TO_FP_CAST_BROKEN
+#ifdef H5_LLONG_TO_FP_CAST_WORKS
TEST_TYPE_CONTIG(dxpl_id_c_to_f, long_long, H5T_NATIVE_LLONG, "llong", windchillFfloat, 1);
#else
TESTING("contiguous, with type conversion (float->llong)")
@@ -273,7 +273,7 @@ int main(void)
TEST_TYPE_CHUNK(dxpl_id_utrans_inv, unsigned int, H5T_NATIVE_UINT, "uint", transformData, 0);
TEST_TYPE_CHUNK(dxpl_id_c_to_f, long, H5T_NATIVE_LONG, "long", windchillFfloat, 1);
TEST_TYPE_CHUNK(dxpl_id_utrans_inv, unsigned long, H5T_NATIVE_ULONG, "ulong", transformData, 0);
-#ifndef H5_LLONG_TO_FP_CAST_BROKEN
+#ifdef H5_LLONG_TO_FP_CAST_WORKS
TEST_TYPE_CHUNK(dxpl_id_c_to_f, long_long, H5T_NATIVE_LLONG, "llong", windchillFfloat, 1);
#else
TESTING("chunked, with type conversion (float->llong)")