* This file is part of HDF5.  The full HDF5 copyright notice, including     *
 * terms governing use, modification, and redistribution, is contained in    *
 * the COPYING file, which can be found at the root of the source code       *
 * distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases.  *
 * If you do not have access to either file, you may request a copy from     *
 * help@hdfgroup.org.                                                        *
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/***********************************************************
*
* Test program:  ttime
* Test program:     ttime
*
* Test the Time Datatype functionality
*
*************************************************************/
#include "testhdf5.h"
#include "hdf5.h"
#define DATAFILE   "ttime.h5"
#ifdef NOT_YET
#define DATASETNAME   "Dataset"
#endif /* NOT_YET */
/****************************************************************
**
**  test_time_commit(): Test committing time datatypes to a file
**
****************************************************************/
    /* Output message about test being performed */
    MESSAGE(5, ("Testing Time Datatypes\n"));
    test_time_commit();         /* Test committing time datatypes to a file */
#ifdef NOT_YET
    test_time_io();             /* Test writing time data to a dataset */
#endif /* NOT_YET */
}   /* test_time() */
/*-------------------------------------------------------------------------
 * Function:    cleanup_time
 * Function:    cleanup_time
 *
 * Purpose: Cleanup temporary test files
 * Purpose:    Cleanup temporary test files
 *
 * Return:  none
 * Return:    none
 *
 * Programmer:  Quincey Koziol
 * Programmer:    Quincey Koziol
 *              October 19, 2000
 *
 * Modifications:
 *
 *-------------------------------------------------------------------------
 */
void
cleanup_time(void)
{
    remove(DATAFILE);