diff options
author | jhendersonHDF <jhenderson@hdfgroup.org> | 2023-05-02 19:52:39 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-02 19:52:39 (GMT) |
commit | f8a1b3ceec485829ccdd3034ef2be68029f1a66e (patch) | |
tree | 5563ca3059b8cbda43f7f1e0ffedf7985f71a4bc /test/API/H5_api_async_test.h | |
parent | 41fd8e66a9f837a1adf36a0253e29440d82ff522 (diff) | |
download | hdf5-f8a1b3ceec485829ccdd3034ef2be68029f1a66e.zip hdf5-f8a1b3ceec485829ccdd3034ef2be68029f1a66e.tar.gz hdf5-f8a1b3ceec485829ccdd3034ef2be68029f1a66e.tar.bz2 |
Add initial version of HDF5 API tests (#2877)
Diffstat (limited to 'test/API/H5_api_async_test.h')
-rw-r--r-- | test/API/H5_api_async_test.h | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/test/API/H5_api_async_test.h b/test/API/H5_api_async_test.h new file mode 100644 index 0000000..f6df48a --- /dev/null +++ b/test/API/H5_api_async_test.h @@ -0,0 +1,29 @@ +/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * + * 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 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. * + * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ + +#ifndef H5_API_ASYNC_TEST_H +#define H5_API_ASYNC_TEST_H + +#include "H5_api_test.h" + +int H5_api_async_test(void); + +/************************************************ + * * + * API async test defines * + * * + ************************************************/ + +#define ASYNC_API_TEST_FILE "H5_api_async_test.h5" +#define ASYNC_API_TEST_FILE_PRINTF "H5_api_async_test_%d.h5" + +#endif |