diff options
author | Leon Arber <larber@ncsa.uiuc.edu> | 2005-04-25 19:40:36 (GMT) |
---|---|---|
committer | Leon Arber <larber@ncsa.uiuc.edu> | 2005-04-25 19:40:36 (GMT) |
commit | 936f41d3f0b8e241ccbdb13f06bc4bf939d8dd3c (patch) | |
tree | 4cc4027291c97df4f2b918612c5355e50f29d9a6 | |
parent | 12088553352465908be0d5e4981a9503e78e4026 (diff) | |
download | hdf5-936f41d3f0b8e241ccbdb13f06bc4bf939d8dd3c.zip hdf5-936f41d3f0b8e241ccbdb13f06bc4bf939d8dd3c.tar.gz hdf5-936f41d3f0b8e241ccbdb13f06bc4bf939d8dd3c.tar.bz2 |
[svn-r10661] Purpose:
Bug fix....
Description:
Despite passing all tests, the previous checkin had a copy/paste typo that
resulted in the tests being run under the wrong conditions.
Solution:
Fixed typo.
Platforms tested:
yet another minor change... copper only.
Misc. update:
-rw-r--r-- | test/dtransform.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/dtransform.c b/test/dtransform.c index b3bce4f..3a160d8 100644 --- a/test/dtransform.c +++ b/test/dtransform.c @@ -254,7 +254,7 @@ int main(void) SKIPPED() #endif -#ifndef H5_LLONG_TO_FP_CAST_BROKEN +#ifdef H5_ULLONG_TO_FP_CAST_WORKS TEST_TYPE_CONTIG(dxpl_id_utrans_inv, unsigned long_long, H5T_NATIVE_ULLONG, "ullong", transformData, 0); #else TESTING("contiguous, with type conversion (float->ullong)") @@ -280,7 +280,7 @@ int main(void) SKIPPED() #endif -#ifndef H5_LLONG_TO_FP_CAST_BROKEN +#ifdef H5_ULLONG_TO_FP_CAST_WORKS TEST_TYPE_CHUNK(dxpl_id_utrans_inv, unsigned long_long, H5T_NATIVE_ULLONG, "ullong", transformData, 0); #else TESTING("chunked, with type conversion (float->ullong)") |