summaryrefslogtreecommitdiffstats
path: root/test/external_env.c
Commit message (Collapse)AuthorAgeFilesLines
* Strip HD prefix from string/char C API calls (#3540)Dana Robinson2023-09-151-5/+5
| | | | | | | | | | | | | | | | | | | | | * Strip HD prefix from string/char C API calls * HD(f)(put|get)(s|c) * HDstr* * HDv*printf * HD(s)(print|scan)f * HDperror But NOT: * HDstrcase* * HDvasprintf * HDstrtok_r * HDstrndup As those are not C99 and have portability work-around implementations. They will be handled later. * Fix th5_system.c screwup
* Consistent initialization of hid_t in the tests (#3521)Scot Breitenfeld2023-09-081-18/+18
|
* Convert hbool_t --> bool in test (#3494)Dana Robinson2023-09-051-2/+2
|
* Remove HD from HDmem* calls (#3211)Dana Robinson2023-06-291-1/+1
|
* Remove programmer/date from comments (#3210)Dana Robinson2023-06-291-6/+0
| | | | * Removes Programmer: and Date: fields * Fixes a few Modifications: fields leftover from previous work
* Rename HD(f)printf() to (f)printf() (#3194)Dana Robinson2023-06-281-1/+1
|
* Many clang -Wextra-semi-stmt fixes (#2537)Sean McBride2023-06-161-2/+2
| | | | | * Adds semicolons to function-like macros * Adds a do..while(0) loop to some macros * Removes semicolons when inappropriate, especially H5E_TRY_BEGIN/END
* Update copyright headers (#2184)Larry Knox2022-11-011-1/+0
| | | | | * Updated source file copyright headers to remove "Copyright by the Board of Trustees of the University of Illinois", which is kept in the top-level COPYING file.
* h5test.h testing macros get enclosed in do..while loops (#1721)Dana Robinson2022-05-041-18/+18
| | | | | | | * h5test.h testing macros get enclosed in do..while loops * Adds missed macro in hl C++ code * Fixes macro in Windows code
* Update license url (#332)Larry Knox2021-02-171-1/+1
| | | | | | * Modify temporary rpath for testing in java example scripts. * Update URL in source file Copyright headers for web copy of COPYING file - src and test directories.
* Clang-format of source filesAllen Byrne2020-09-301-56/+61
|
* Pre-format fixes for warnings as errorsAllen Byrne2020-09-291-3/+0
|
* Modify external_env.c to prevent deleting test file of external.c.Larry Knox2020-01-091-2/+1
| | | | Fix for HDFFV-10941.
* Add HD prefix to testsAllen Byrne2019-08-151-21/+21
|
* Fix conflicting types for reset_raw_data_files() parameter in ↵Larry Knox2019-08-011-1/+1
| | | | | | external_common.c changed from int to hbool_t. Change 0 and 1 to FALSE and TRUE in calls to reset_raw_data_files().
* Add support for GCC9, update warnhist script, and clean up warnings.Quincey Koziol2019-07-031-0/+1
|
* Add support for GCC 7.x warnings, update warnhist script to account for them,Quincey Koziol2019-06-211-0/+5
| | | | clean up warnings.
* Changing file names and directory names to avoid possible conflict during ↵Songyu Lu2019-04-231-3/+3
| | | | parallel 'make check'.
* Changing file names to avoid possible conflicts during parallel test.Songyu Lu2019-04-221-13/+11
|
* Some coding style changes.Songyu Lu2019-04-111-3/+0
|
* HDFFV-10658 - setting and getting properties in API context:Songyu Lu2019-04-091-5/+4
| | | | | 1. switched to use the existing H5F_prefix_open_t for enum type; 2. put the common private function used by external.c and external_env.c into external_common.c
* This commit basically has the following changes:Songyu Lu2019-04-041-0/+219
1. restored the datatype, dataspace, and LCPL of the dataset for VOL connector back to the properties. 2. splitted external.c and vds.c because they called HDsetenv in the program, instead using shell scripts to set the environment variables. 3. changed H5CX_get_vds_prefix and H5CX_get_ext_file_prefix to use H5P_peek instead of H5P_get.