summaryrefslogtreecommitdiffstats
path: root/fortran/testpar/async.F90
Commit message (Collapse)AuthorAgeFilesLines
* Fix the datatype passed to H5*exists_async APIs in tests. (#4033)Scot Breitenfeld2024-02-231-5/+4
| | | Add a new testing function to verify C_BOOL values.
* Attempt to quiet some warnings with cray compilers. (#3724)Scot Breitenfeld2023-10-191-4/+0
|
* Fixed check for a VOL's async compatibility (#3164)Scot Breitenfeld2023-06-221-4/+6
| | | | | * cap flag fix in test * added async comp. output
* Print out the VOL connector being used in the ASYNC test (#3016)Scot Breitenfeld2023-06-051-28/+45
| | | | | * Print out the VOL connector being used in the ASYNC test * Add h5pget_vol_cap_flags_f with test
* fixed GNU 4.8.5 compilation issue with C_LOC and strings (#2996)Scot Breitenfeld2023-05-231-2/+2
|
* Updated H5Ovisit_f and H5Ovisit_by_name_f wrappers internals. (#2987)Scot Breitenfeld2023-05-221-10/+14
| | | | | | | | | * * Removed C wrappers for H5Ovisit_f and H5Ovist_by_name_f, modifying the Fortran source accordingly. * The intent for op_data was declared INOUT, even though the pointer address INTENT is, in actuality, IN. gfortran was optimizing out op_data in tests where the values were repeatedly reset to the same value. The values were reset in the test because the data the pointer targeted was updated in the callback. * Made use of the 'verify' function to check value correctness. * changed to useing INTEGER(C_INT) instead of C_BOOL, updated the documentation
* Added Fortran Async APIs (#2715)Scot Breitenfeld2023-04-211-0/+1417
H5A, H5D, H5ES, H5G, H5F, H5L and H5O async APIs were added.