diff options
author | Raymond Lu <songyulu@hdfgroup.org> | 2013-08-28 19:35:34 (GMT) |
---|---|---|
committer | Raymond Lu <songyulu@hdfgroup.org> | 2013-08-28 19:35:34 (GMT) |
commit | 9e0fcdc3970f576786332eacb1929b91701614ba (patch) | |
tree | cf72cf28520072be5c6b8b2a61e0dafd7552f6ff /test/dtransform.c | |
parent | 55c2af580c11034b210df5d9efdd6b9c4d802424 (diff) | |
download | hdf5-9e0fcdc3970f576786332eacb1929b91701614ba.zip hdf5-9e0fcdc3970f576786332eacb1929b91701614ba.tar.gz hdf5-9e0fcdc3970f576786332eacb1929b91701614ba.tar.bz2 |
[svn-r24080] Since dtransform.c uses H5T_conv_i_f and H5T_conv_f_i, I added them back for OpenVMS. But I took out the test case in dtransform.c which has problem. See Jira issue VMS-8.
Tested on jam.
Diffstat (limited to 'test/dtransform.c')
-rw-r--r-- | test/dtransform.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/dtransform.c b/test/dtransform.c index 9c78043..ea1a619 100644 --- a/test/dtransform.c +++ b/test/dtransform.c @@ -298,12 +298,17 @@ 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_VMS #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)") SKIPPED() #endif +#else /*H5_VMS*/ + TESTING("contiguous, with type conversion (float->llong): some problem in library's conversion") + SKIPPED() +#endif /*H5_VMS*/ #ifdef H5_ULLONG_TO_FP_CAST_WORKS TEST_TYPE_CONTIG(dxpl_id_utrans_inv, unsigned long long, H5T_NATIVE_ULLONG, "ullong", transformData, 0); |