diff options
author | Raymond Lu <songyulu@hdfgroup.org> | 2004-06-02 16:35:56 (GMT) |
---|---|---|
committer | Raymond Lu <songyulu@hdfgroup.org> | 2004-06-02 16:35:56 (GMT) |
commit | dd59aa926c41e24c044f0593c800dd24ac260a78 (patch) | |
tree | 2383241f43e48e0464549dc5f0eab95123c901af /test | |
parent | 825a435d3654901a1822cfcef9518fc1e90de23a (diff) | |
download | hdf5-dd59aa926c41e24c044f0593c800dd24ac260a78.zip hdf5-dd59aa926c41e24c044f0593c800dd24ac260a78.tar.gz hdf5-dd59aa926c41e24c044f0593c800dd24ac260a78.tar.bz2 |
[svn-r8605] *** empty log message ***
Diffstat (limited to 'test')
-rw-r--r-- | test/dtypes.c | 56 |
1 files changed, 51 insertions, 5 deletions
diff --git a/test/dtypes.c b/test/dtypes.c index 0990e42..61beb86 100644 --- a/test/dtypes.c +++ b/test/dtypes.c @@ -2610,6 +2610,46 @@ convert_opaque(hid_t UNUSED st, hid_t UNUSED dt, H5T_cdata_t *cdata, /*------------------------------------------------------------------------- * Function: test_opaque * + * Purpose: Driver function to test opaque datatypes + * + * Return: Success: 0 + * + * Failure: number of errors + * + * Programmer: Raymond Lu + * June 2, 2004 + * + * Modifications: + * + *------------------------------------------------------------------------- + */ +static int +test_opaque(void) +{ + int num_errors = 0; + + TESTING("opaque datatypes"); + + /* Test opaque types with tags */ + num_errors += opaque_check(0); + /* Test opaque types without tag */ + num_errors += opaque_check(1); + + if(num_errors) + goto error; + + PASSED(); + return 0; + + error: + H5_FAILED(); + return num_errors; +} + + +/*------------------------------------------------------------------------- + * Function: opaque_check + * * Purpose: Test opaque datatypes * * Return: Success: 0 @@ -2620,25 +2660,32 @@ convert_opaque(hid_t UNUSED st, hid_t UNUSED dt, H5T_cdata_t *cdata, * Thursday, May 20, 1999 * * Modifications: + * Raymond Lu + * June 2, 2004 + * Made tag for one opaque type optional. * *------------------------------------------------------------------------- */ static int -test_opaque(void) +opaque_check(int tag_it) { #define OPAQUE_NELMTS 1000 hid_t st=-1, dt=-1; herr_t status; char buf[1]; /*not really used*/ - int saved = num_opaque_conversions_g; + int saved; - TESTING("opaque datatypes"); + saved = num_opaque_conversions_g = 0; /* Build source and destination types */ if ((st=H5Tcreate(H5T_OPAQUE, 4))<0) goto error; if (H5Tset_tag(st, "opaque source type")<0) goto error; + if ((dt=H5Tcreate(H5T_OPAQUE, 4))<0) goto error; - if (H5Tset_tag(dt, "opaque destination type")<0) goto error; + if (tag_it) { + if (H5Tset_tag(dt, "opaque destination type")<0) + goto error; + } /* Make sure that we can't convert between the types yet */ H5E_BEGIN_TRY { @@ -2664,7 +2711,6 @@ test_opaque(void) H5Tclose(st); H5Tclose(dt); - PASSED(); return 0; error: |