Source
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Copyright by The HDF Group. *
* All rights reserved. *
* *
* This file is part of HDF5. The full HDF5 copyright notice, including *
* terms governing use, modification, and redistribution, is contained in *
* the files COPYING and Copyright.html. COPYING can be found at the root *
* of the source code distribution tree; Copyright.html can be found at the *
* root level of an installed copy of the electronic HDF5 document set and *
* is linked from the top-level documents page. It can also be found at *
* http://hdfgroup.org/HDF5/doc/Copyright.html. If you do not have *
* access to either file, you may request a copy from help@hdfgroup.org. *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/*
* Basic tests of dataset (H5D) API routines, to verify that API compatibility
* is working in the 1.8+ versions of the library
*/
int
main(int argc, const char *argv[])
{
hid_t fid; /* HDF5 File ID */
hid_t sid; /* Dataspace ID */
hid_t dsid; /* Dataset ID */
/* Shut compiler up */
argc = argc;
argv = argv;
/* Dump versions for API symbols tested, if library supports versioning */
printf("H5Dcreate_vers = %d\n", H5Dcreate_vers);
printf("H5Dopen_vers = %d\n", H5Dopen_vers);
/* Create file */
if((fid = H5Fcreate(FILENAME, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT)) < 0) goto error;
/* Create dataspace for attribute and dataset */
if((sid = H5Screate(H5S_SCALAR)) < 0) goto error;
/* Create a dataset */
if((dsid = H5Dcreate(fid, DSET_NAME, H5T_NATIVE_UCHAR, sid, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT)) < 0) goto error;