summaryrefslogtreecommitdiffstats
path: root/test
Commit message (Expand)AuthorAgeFilesLines
...
| | | | * Fixes for warnings in the tools code.Dana Robinson2020-04-251-0/+59
| | | * | For compatibility with non-C99 Visual Studio versions, use "%" PRIuMAXDavid Young2020-04-241-2/+2
| | | * | Fix `test/swmr_sparse_reader.c:118:77: error: cast from pointerDavid Young2020-04-241-2/+2
| | | |/
| | | * Trim trailing whitespaceQuincey Koziol2020-04-2067-517/+517
| | | * Merge branch 'develop' of https://bitbucket.hdfgroup.org/scm/~jake.smith/hdf5...Jacob Smith2020-04-074-352/+1096
| | | |\
| | | | * Merging in latest from upstream (HDFFV/hdf5:refs/heads/develop)Allen Byrne2020-04-071-0/+553
| | | | |\
| | | | | * Merge pull request #2472 in HDFFV/hdf5 from ~VCHOI/my_third_fork:bugfix/bound...Vailin Choi2020-04-061-0/+553
| | | | | |\
| | | | | | * Modifications based on PR review feedback.vchoi2020-04-011-71/+51
| | | | | | * Add two routines gen_ref_files() and gen_sel_files() to generate test files r...vchoi2020-03-261-0/+573
| | | | * | | Minor updates and fix settings for fortran flagsAllen Byrne2020-04-061-1/+0
| | | | * | | TRILAB-192 add c++ and fortran warnings build systems one fileAllen Byrne2020-04-051-3/+15
| | | | |/ /
| | | | * | Merge pull request #2461 in HDFFV/hdf5 from ~VCHOI/my_third_fork:bugfix/dtype...Vailin Choi2020-04-021-348/+388
| | | | |\ \
| | | | | * | A fix in the cleaning up code for datatype when datatype initialization via H...vchoi2020-03-231-348/+388
| | | | * | | Refactor to reduce verbosity.Quincey Koziol2020-03-261-55/+33
| | | | | |/ | | | | |/|
| | | | * | Correct macro checkQuincey Koziol2020-03-251-1/+1
| | | | * | Correct failure when allocation tracking are disabled.Quincey Koziol2020-03-241-0/+12
| | | | * | Revise API for H5get_alloc_stats() to take a struct instead of separate values.Quincey Koziol2020-03-201-38/+30
| | | | * | Merge remote-tracking branch 'origin/develop' into alloc_statsQuincey Koziol2020-03-201-1/+20
| | | | |\ \ | | | | | |/
| | | | | * Fix threadsafe for new testAllen Byrne2020-03-181-1/+20
| | | | * | Add routines to query the library's free list sizes and allocation stats.Quincey Koziol2020-03-101-0/+139
| | | | |/
| | | * | Tidying of Mirror VFD.Jacob Smith2020-04-073-30/+51
| | | * | Add Splitter VFD to library.Jacob Smith2020-03-1313-557/+5011
| | | |/
| | | * So that I can use PASSED(); anywhere a statement can go, #define PASSED() withDavid Young2020-02-2814-248/+247
| | | * Complete the comment on thread_main(), explaining why the barrier is used.David Young2020-02-271-1/+9
| | | * The first implementation seemed to allow for the possibility that a threadDavid Young2020-02-271-1/+8
| | | * Test the right condition for the EBUSY return in pthread_barrier_destroy().David Young2020-02-271-1/+1
| | | * s/exit_failure/EXIT_FAILURE/gDavid Young2020-02-271-2/+2
| | | * Implement pthread_barrier(3) for Darwin using a counter, condition variable,David Young2020-02-271-0/+123
| | | * TRILAB-142 Change minimum CMake version to 3.12Allen Byrne2020-02-211-1/+1
| | | * Merge pull request #2367 in HDFFV/hdf5 from ~DYOUNG/werror:unused to developDavid Young2020-02-195-8/+9
| | | |\
| | | | * H5_HAVE_PARALLEL, _DEBUG_API, etc. Add attributes to some variables andDavid Young2020-02-105-8/+9
| | | * | Use HD prefix.David Young2020-02-121-13/+13
| | | * | Provide local copies of err(3)- and errx(3)-alike functionsDavid Young2020-02-071-7/+37
| | | |/
| | | * Oops, the test has to return success in the unimplemented case.David Young2020-02-061-3/+2
| | | * src/H5Eint.c: #include H5TSprivate.h for H5TS_thread_id() definitions.David Young2020-02-031-2/+2
| | | * Change thread IDs to uint64_t from unsigned long, per Quincey's suggestion.David Young2020-02-032-6/+7
| | | * Add thread_id.c to the MANIFEST and the CMakeLists.txt per Allen'sDavid Young2020-02-031-0/+1
| | | * Replace pthread_self_ulong() with H5TS_thread_id(). The POSIX ThreadsDavid Young2020-02-033-4/+164
| | | * Merge branch 'develop' into misckmu2020-01-2913-70/+153
| | | |\
| | | | * Merge pull request #2318 in HDFFV/hdf5 from ~DYOUNG/werror:reduce-werror-diff...David Young2020-01-296-27/+18
| | | | |\
| | | | | * Reduce differences between my -Werror branch and `develop`:David Young2020-01-296-27/+18
| | | | * | Merge pull request #2320 in HDFFV/hdf5 from ~DYOUNG/werror:reduce-werror-diff...David Young2020-01-291-1/+1
| | | | |\ \
| | | | | * | Reduce casts of HDcalloc()/HDmalloc() that -Wc++-compat required.David Young2020-01-291-1/+1
| | | | | |/
| | | | * | Merge pull request #2321 in HDFFV/hdf5 from ~DYOUNG/werror:reduce-werror-diff...David Young2020-01-295-25/+34
| | | | |\ \
| | | | | * | testpar/t_2Gio.c: Fix a typo that I think was introduced by aDavid Young2020-01-295-25/+34
| | | | | |/
| | | | * | Introduce new H5VL _by_value routinesJordan Henderson2020-01-292-17/+100
| | | | |/
| | | * | initialization discards const warningkmu2020-01-291-7/+7
| | | * | Merge branch 'develop' into misckmu2020-01-286-27/+34
| | | |\ \ | | | | |/
| | | | * Merge pull request #2311 in HDFFV/hdf5 from ~KMU/hdf5:misc to developKimmy Mu2020-01-281-19/+19
| | | | |\
| | | | * | Cleaned up warnings in test/tid.c.Dana Robinson2020-01-241-9/+16