summaryrefslogtreecommitdiffstats
path: root/test/API/tconfig.c
diff options
context:
space:
mode:
authorjhendersonHDF <jhenderson@hdfgroup.org>2023-11-13 19:49:38 (GMT)
committerGitHub <noreply@github.com>2023-11-13 19:49:38 (GMT)
commit28d2b6771f41396f1e243e00cb9dd57c4c891613 (patch)
tree238e77e247ac6b688d0eea0a6f81df95e47448dc /test/API/tconfig.c
parent8b3ffdef3099d2699ec71a5f855966132b3d3c25 (diff)
downloadhdf5-28d2b6771f41396f1e243e00cb9dd57c4c891613.zip
hdf5-28d2b6771f41396f1e243e00cb9dd57c4c891613.tar.gz
hdf5-28d2b6771f41396f1e243e00cb9dd57c4c891613.tar.bz2
HDF5 API test updates (#3835)
* HDF5 API test updates Removed test duplication from bringing API tests back into the library from external VOL tests repo Synced changes between API tests and library's tests Updated API tests CMake code to directly use and install testhdf5, testphdf5, etc. instead of creating duplicate binaries Added new h5_using_native_vol() test function to determine whether the VOL connector being used is (or the VOL connector stack being used resolves to) the native VOL connector * Remove duplicate variable
Diffstat (limited to 'test/API/tconfig.c')
-rw-r--r--test/API/tconfig.c181
1 files changed, 0 insertions, 181 deletions
diff --git a/test/API/tconfig.c b/test/API/tconfig.c
deleted file mode 100644
index 3d49524..0000000
--- a/test/API/tconfig.c
+++ /dev/null
@@ -1,181 +0,0 @@
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * 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://www.hdfgroup.org/licenses. *
- * If you do not have access to either file, you may request a copy from *
- * help@hdfgroup.org. *
- * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
-
-/***********************************************************
- *
- * Test program: tconfig
- *
- * Test the definitions in the H5config.h as much as possible
- *
- *************************************************************/
-
-#include "testhdf5.h"
-
-/* macros definitions */
-/* verify C int type: verify the size of signed and unsigned int type
- * with the macro size.
- */
-#define vrfy_cint_type(ctype, uctype, ctype_macro) \
- do { \
- /* check signed type size */ \
- vrfy_macrosize(ctype, ctype_macro, #ctype_macro); \
- /* check unsigned type size */ \
- vrfy_macrosize(uctype, ctype_macro, #ctype_macro); \
- } while (0)
-
-/* verify C type sizes: verify the sizeof type with the macro size. */
-#define vrfy_ctype(type, macro) \
- do { \
- vrfy_macrosize(type, macro, #macro); \
- } while (0)
-
-/* verify if the sizeof(type) matches size defined in macro. */
-/* Needs this extra step so that we can print the macro name. */
-#define vrfy_macrosize(type, macro, macroname) \
- if (sizeof(type) != (macro)) \
- TestErrPrintf("Error: sizeof(%s) is %zu but %s is %d\n", #type, sizeof(type), macroname, \
- (int)(macro));
-
-/* local routine prototypes */
-void test_config_ctypes(void);
-void test_exit_definitions(void);
-
-/*-------------------------------------------------------------------------
- * Function: test_configure
- *
- * Purpose: Main configure definitions testing routine
- *
- * Return: none (error is fed back via global variable num_errs)
- *
- *-------------------------------------------------------------------------
- */
-void
-test_configure(void)
-{
- /* Output message about test being performed */
- MESSAGE(5, ("Testing configure definitions\n"));
- test_config_ctypes();
- test_exit_definitions();
-}
-
-/*-------------------------------------------------------------------------
- * Function: cleanup_configure
- *
- * Purpose: Cleanup temporary test files
- *
- * Return: none
- *-------------------------------------------------------------------------
- */
-void
-cleanup_configure(void)
-{
- /* no file to clean */
-}
-
-/*-------------------------------------------------------------------------
- * Function: test_config_ctypes
- *
- * Purpose: test C language data type sizes
- *
- * Return: none (error is fed back via global variable num_errs)
- *-------------------------------------------------------------------------
- */
-void
-test_config_ctypes(void)
-{
- /* standard C89 basic types */
- /* char, signed char, unsigned char are three distinct types. */
- vrfy_ctype(char, H5_SIZEOF_CHAR);
- vrfy_cint_type(signed char, unsigned char, H5_SIZEOF_CHAR);
- vrfy_cint_type(int, unsigned int, H5_SIZEOF_INT);
- vrfy_cint_type(short, unsigned short, H5_SIZEOF_SHORT);
- vrfy_cint_type(long, unsigned long, H5_SIZEOF_LONG);
- vrfy_ctype(float, H5_SIZEOF_FLOAT);
- vrfy_ctype(double, H5_SIZEOF_DOUBLE);
- vrfy_ctype(long double, H5_SIZEOF_LONG_DOUBLE);
-
- /* standard C99 basic types */
- vrfy_cint_type(long long, unsigned long long, H5_SIZEOF_LONG_LONG);
- vrfy_cint_type(int8_t, uint8_t, H5_SIZEOF_INT8_T);
- vrfy_cint_type(int16_t, uint16_t, H5_SIZEOF_INT16_T);
- vrfy_cint_type(int32_t, uint32_t, H5_SIZEOF_INT32_T);
- vrfy_cint_type(int64_t, uint64_t, H5_SIZEOF_INT64_T);
-
- /* Some vendors have different sizes for the signed and unsigned */
- /* fast8_t. Need to check them individually. */
-#if H5_SIZEOF_INT_FAST8_T > 0
- vrfy_ctype(int_fast8_t, H5_SIZEOF_INT_FAST8_T);
-#endif
-
-#if H5_SIZEOF_UINT_FAST8_T > 0
- vrfy_ctype(uint_fast8_t, H5_SIZEOF_UINT_FAST8_T);
-#endif
-
-#if H5_SIZEOF_INT_FAST16_T > 0
- vrfy_cint_type(int_fast16_t, uint_fast16_t, H5_SIZEOF_INT_FAST16_T);
-#endif
-
-#if H5_SIZEOF_INT_FAST32_T > 0
- vrfy_cint_type(int_fast32_t, uint_fast32_t, H5_SIZEOF_INT_FAST32_T);
-#endif
-
-#if H5_SIZEOF_INT_FAST64_T > 0
- vrfy_cint_type(int_fast64_t, uint_fast64_t, H5_SIZEOF_INT_FAST64_T);
-#endif
-
-#if H5_SIZEOF_INT_LEAST8_T > 0
- vrfy_cint_type(int_least8_t, uint_least8_t, H5_SIZEOF_INT_LEAST8_T);
-#endif
-
-#if H5_SIZEOF_INT_LEAST16_T > 0
- vrfy_cint_type(int_least16_t, uint_least16_t, H5_SIZEOF_INT_LEAST16_T);
-#endif
-
-#if H5_SIZEOF_INT_LEAST32_T > 0
- vrfy_cint_type(int_least32_t, uint_least32_t, H5_SIZEOF_INT_LEAST32_T);
-#endif
-
-#if H5_SIZEOF_INT_LEAST64_T > 0
- vrfy_cint_type(int_least64_t, uint_least64_t, H5_SIZEOF_INT_LEAST64_T);
-#endif
-
-#if H5_SIZEOF_OFF_T > 0
- vrfy_ctype(off_t, H5_SIZEOF_OFF_T);
-#endif
-
-#if H5_SIZEOF_SIZE_T > 0
- vrfy_ctype(size_t, H5_SIZEOF_SIZE_T);
-#endif
-
-#if H5_SIZEOF_SSIZE_T > 0
- vrfy_ctype(ssize_t, H5_SIZEOF_SSIZE_T);
-#endif
-}
-
-/*-------------------------------------------------------------------------
- * Function: test_exit_definitions
- *
- * Purpose: test the exit macros values
- *
- * Return: none (error is fed back via global variable num_errs)
- *-------------------------------------------------------------------------
- */
-void
-test_exit_definitions(void)
-{
- /* Verify the EXIT_SUCCESS and EXIT_FAILURE are 0 and 1 respectively. */
- /* This should be true for POSIX compliant systems. */
- if (EXIT_SUCCESS != 0)
- TestErrPrintf("Error: EXIT_SUCCESS is %d, should be %d\n", EXIT_SUCCESS, 0);
- if (EXIT_FAILURE != 1)
- TestErrPrintf("Error: EXIT_FAILURE is %d, should be %d\n", EXIT_FAILURE, 1);
-}