hdf5/test/filenotclosed.c

146 lines
5.1 KiB
C
Raw Normal View History

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Copyright by The HDF Group. *
* Copyright by the Board of Trustees of the University of Illinois. *
* 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 COPYING file, which can be found at the root of the source code *
* distribution tree, or in https://www.hdfgroup.org/licenses. *
* If you do not have access to either file, you may request a copy from *
* help@hdfgroup.org. *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/*
* Purpose: Test to verify that the assertion/abort failure is fixed when the
* application does not close the file. (See HDFFV-10160)
*/
#include "h5test.h"
2020-09-30 22:27:10 +08:00
#define FILENAME "filenotclosed"
#define DATASET_NAME "dset"
/*-------------------------------------------------------------------------
* Function: catch_signal
*
* Purpose: The signal handler to catch the SIGABRT signal.
*
* Return: No return
*
* Programmer: Vailin Choi
*
*-------------------------------------------------------------------------
*/
2020-09-30 22:27:10 +08:00
static void
catch_signal(int H5_ATTR_UNUSED signo)
{
2019-09-07 09:06:26 +08:00
HDexit(EXIT_FAILURE);
} /* catch_signal() */
/*-------------------------------------------------------------------------
* Function: main
*
* Purpose: Test to verify the following problem described in HDFFV-10160 is fixed:
* "a.out: H5Fint.c:1679: H5F_close: Assertion `f->file_id > 0' failed."
*
* Return: Success: exit(EXIT_SUCCESS)
* Failure: exit(EXIT_FAILURE)
*
* Programmer: Vailin Choi; June 2017
*
*-------------------------------------------------------------------------
*/
int
main(void)
{
2020-09-30 22:27:10 +08:00
hid_t fapl = -1; /* File access property lists */
hid_t fid = -1; /* File ID */
hid_t did = -1; /* Dataset ID */
hid_t dcpl = -1; /* Dataset creation property list */
hid_t sid = -1; /* Dataspace ID */
hsize_t cur_dim[1] = {5}; /* Current dimension sizes */
hsize_t max_dim[1] = {H5S_UNLIMITED}; /* Maximum dimension sizes */
hsize_t chunk_dim[1] = {10}; /* Chunk dimension sizes */
int buf[5] = {1, 2, 3, 4, 5}; /* The data to be written to the dataset */
char filename[100]; /* File name */
const char *env_h5_drvr; /* File Driver value from environment */
hbool_t contig_addr_vfd; /* Contiguous address vfd */
/* Get the VFD to use */
env_h5_drvr = HDgetenv("HDF5_DRIVER");
2020-09-30 22:27:10 +08:00
if (env_h5_drvr == NULL)
env_h5_drvr = "nomatch";
/* Skip test when using VFDs that has different address spaces for each
* type of metadata allocation.
* Further investigation is needed to resolve the test failure with the
* split/multi driver. Please see HDFFV-10160.
*/
contig_addr_vfd = (hbool_t)(HDstrcmp(env_h5_drvr, "split") != 0 && HDstrcmp(env_h5_drvr, "multi") != 0);
2020-09-30 22:27:10 +08:00
if (!contig_addr_vfd) {
SKIPPED();
HDputs(" Temporary skipped for a spilt/multi driver");
HDexit(EXIT_SUCCESS);
}
h5_reset();
/* To exit from the file for SIGABRT signal */
2020-09-30 22:27:10 +08:00
if (HDsignal(SIGABRT, catch_signal) == SIG_ERR)
TEST_ERROR
fapl = h5_fileaccess();
h5_fixname(FILENAME, fapl, filename, sizeof(filename));
/* Set to latest format */
2020-09-30 22:27:10 +08:00
if (H5Pset_libver_bounds(fapl, H5F_LIBVER_LATEST, H5F_LIBVER_LATEST) < 0)
TEST_ERROR
/* Create the file */
2020-09-30 22:27:10 +08:00
if ((fid = H5Fcreate(filename, H5F_ACC_TRUNC, H5P_DEFAULT, fapl)) < 0)
TEST_ERROR
/* Create the dcpl and set the chunk size */
2020-09-30 22:27:10 +08:00
if ((dcpl = H5Pcreate(H5P_DATASET_CREATE)) < 0)
TEST_ERROR
2020-09-30 22:27:10 +08:00
if (H5Pset_chunk(dcpl, 1, chunk_dim) < 0)
TEST_ERROR
/* Create the dataspace */
2020-09-30 22:27:10 +08:00
if ((sid = H5Screate_simple(1, cur_dim, max_dim)) < 0)
TEST_ERROR
/* Create the dataset */
2020-09-30 22:27:10 +08:00
if ((did = H5Dcreate2(fid, DATASET_NAME, H5T_NATIVE_INT, sid, H5P_DEFAULT, dcpl, H5P_DEFAULT)) < 0)
TEST_ERROR
/* Write to the dataset */
2020-09-30 22:27:10 +08:00
if (H5Dwrite(did, H5T_NATIVE_INT, H5S_ALL, H5S_ALL, H5P_DEFAULT, buf) < 0)
TEST_ERROR
/* Close the dataset */
2020-09-30 22:27:10 +08:00
if (H5Dclose(did) < 0)
TEST_ERROR
/* Close the dataspace */
2020-09-30 22:27:10 +08:00
if (H5Sclose(sid) < 0)
TEST_ERROR
/* Close the property lists */
2020-09-30 22:27:10 +08:00
if (H5Pclose(dcpl) < 0)
TEST_ERROR
2020-09-30 22:27:10 +08:00
if (H5Pclose(fapl) < 0)
TEST_ERROR
/* The file is not closed. */
/* The library will call H5_term_library to shut down the library. */
HDexit(EXIT_SUCCESS);
error:
HDputs("*** TEST FAILED ***");
HDexit(EXIT_FAILURE);
}