summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Split out test logic to separate file (#3639)Allen Byrne2023-10-062-94/+110
|
* Improve consistency in past tense usage (#3638)H. Joe Lee2023-10-061-1/+1
|
* Fail CMake on Windows when sub-filing VFD is enabled (#3636)H. Joe Lee2023-10-061-1/+4
|
* Disambiguate error output messages. (#3634)H. Joe Lee2023-10-051-4/+4
| | | | | * Disambiguate error output messages. * Address @brtnfld review.
* Fix grammar (#3635)H. Joe Lee2023-10-051-3/+3
|
* Remove old EXTERNALPROJECT_ADD in favor of FETCH_CONTENT (#3624)Allen Byrne2023-10-0413-258/+111
|
* Remove unused member from H5D_shared_t struct. (#3628)Neil Fortner2023-10-031-7/+6
|
* Disable static + thread-safe on Windows w/ CMake (#3622)Dana Robinson2023-10-032-2/+14
| | | | | | | | | The thread-safety feature on Windows requires a hook in DllMain() and thus is only available when HDF5 is built as a shared library. This was previously a warning, but has now been elevated to a fatal error that cannot be overridden with ALLOW_UNSUPPORTED. Fixes GitHub #3613
* Add HPC CDash to README.md (#3623)Dana Robinson2023-10-031-0/+2
|
* Fix several spelling/grammar issues (#3621)jhendersonHDF2023-10-0365-98/+98
|
* Fix Intel oneAPI icc warning (#3619)H. Joe Lee2023-09-301-2/+8
|
* Cleanup unused statements (#3553) (#3617)bmribler2023-09-291-5/+3
| | | Removed unnecessary assert statements and noise comments.
* Fix grammar (#3614)H. Joe Lee2023-09-291-1/+1
|
* Fixed unused variable in H5CS.c (#3552) (#3612)bmribler2023-09-291-6/+3
| | | * Fixed #3552
* Fix typos (#3609)H. Joe Lee2023-09-273-28/+28
|
* Fix typo behaviour and dependes. (#3605)H. Joe Lee2023-09-271-3/+3
|
* Remove useless define TRUE/FALSE statements. (#3604)H. Joe Lee2023-09-271-2/+0
|
* Remove unnecessary assignment in test generator (#3603)Dana Robinson2023-09-271-1/+0
| | | | | | | Fixes what looks like a copy/paste/modify error in the format convert test file generator, where an array element is assigned one value and them immediately overwritten by another value. Fixes Coverity issue 1542285
* Fix potential uninitialized variable (#3602)Dana Robinson2023-09-271-3/+4
| | | | | | | | | | Moves a union initialization up a bit so it's performed before code that can jump to the cleanup target, where file descriptors could be checked without being initialized. This could only happen in test code and only in an out-of-memory situation. Fixes Coverity 1542254
* Correct path name of ddl file to be changed (#3607)Allen Byrne2023-09-271-2/+2
|
* Remove `sh` to run bash script. (#3590)H. Joe Lee2023-09-261-8/+6
|
* Clean up Subfiling VFD header doxygen formatting (#3601)jhendersonHDF2023-09-261-16/+26
|
* Develop tools move (#3580)Allen Byrne2023-09-261163-2224/+2292
| | | Reorganizes the tools files to support the VOL tests
* Replaces HDgetenv with getenv (#3599)Scot Breitenfeld2023-09-2680-137/+134
|
* Use HDoff_t with lseek consistently (#3600)Dana Robinson2023-09-2610-17/+17
| | | | | lseek on Windows uses __int64 for both the offset and return type instead of off_t like most POSIX systems. This changes ensures we use HDoff_t (which is typdef'd correctly on Windows) w/ lseek.
* Fix docs for H5Acreate2 and H5Acreate_by_name (#3598)jhendersonHDF2023-09-262-30/+30
|
* Fix typo: arange->arrange in src/H5Cmpio.c. (#3597)H. Joe Lee2023-09-261-1/+1
|
* Fix docs for H5Pset_dxpl_mpio_collective_opt() (#3594)jhendersonHDF2023-09-252-15/+21
|
* Removed the use of -commons linking option on Darwin (#3581)Scot Breitenfeld2023-09-253-10/+5
| | | | Removed the use of -commons linking option on Darwin as COMMON and EQUIVALENCE is no long used
* Remove h5dwalk.1 man page. (#3589)H. Joe Lee2023-09-251-42/+0
|
* Fixed GH-3554 (#3584)bmribler2023-09-251-1/+1
| | | Removed the extra condition
* fixed function declaration (#3579)Scot Breitenfeld2023-09-221-2/+2
|
* Update release script. (#3577)Larry Knox2023-09-221-109/+22
|
* Correct comments about H5Z_FILTER_NONE (#3572)jhendersonHDF2023-09-224-4/+4
|
* Fix ifx unused variable hdferr warning. (#3568)H. Joe Lee2023-09-222-0/+7
|
* Fix typo (givin->given) in test/testframe.c. (#3567)H. Joe Lee2023-09-221-1/+1
|
* Fix typos and grammar in t_pread. (#3565)H. Joe Lee2023-09-221-7/+7
|
* Some minor formatting and text changes (#3563)Allen Byrne2023-09-223-40/+2
|
* Adds link to h5fuse.sh in testpar for autotools (#3557)Scot Breitenfeld2023-09-227-2/+16
| | | | * Make the h5fuse.sh utility available to parallel subfiling tests so h5fuse testing is not skipped.
* Check return values from HDF5 API calls. (#3556)H. Joe Lee2023-09-221-4/+2
|
* Update oneAPI-C/A badge yml links. (#3564)H. Joe Lee2023-09-211-2/+2
|
* Fix grammar (#3545)H. Joe Lee2023-09-191-1/+1
|
* Fix broken URL. (#3546)H. Joe Lee2023-09-191-2/+2
|
* Convert main.yml CI into callable workflows (#3529)Allen Byrne2023-09-1822-774/+1380
|
* Strip HD prefix from string/char C API calls (#3540)Dana Robinson2023-09-15363-6348/+6159
| | | | | | | | | | | | | | | | | | | | | * 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
* fixed arg to C H5Dwrite_chunk (#3541)Scot Breitenfeld2023-09-151-10/+10
|
* Remove HD prefix from HDlog10 calls (#3539)Dana Robinson2023-09-151-8/+8
| | | | Was missed in a previous commit and causes building subfiling to fail.
* Remove HD prefix from math functions (#3538)Dana Robinson2023-09-1419-229/+151
|
* Add NVHPC 23.7 GitHub Actions (#3509)H. Joe Lee2023-09-142-0/+114
| | | | | * Add NVHPC 27.3 GitHub Actions * Address @derobins review
* removed C_INT32_T from Fortran APIs (#3537)Scot Breitenfeld2023-09-147-78/+103
|