summaryrefslogtreecommitdiffstats
path: root/test
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'develop' into dset_ohdr_minimizeJacob Smith2018-12-1271-4427/+5614
|\
| * Merge pull request #1348 in HDFFV/hdf5 from ↵Ray Lu2018-12-071-2/+103
| |\ | | | | | | | | | | | | | | | | | | | | | | | | ~SONGYULU/hdf5_ray:bugfix/HDFFV-10635-hdf5-library-segmentation-fault to develop * commit '3e8599591504c95d8a97100b9546174f6132dc97': HDFFV-10635: Some minor changes to the test case and the comments in the library. HDFFV-10635: add a test case. HDFFV-10635: Allowing to write the same variable-length element more than once.
| | * HDFFV-10635: Some minor changes to the test case and the comments in the ↵Songyu Lu2018-12-061-28/+29
| | | | | | | | | | | | library.
| | * HDFFV-10635: add a test case.Songyu Lu2018-12-051-2/+102
| | |
| * | Update to new callbacks in H5VL_class_t.Quincey Koziol2018-12-051-6/+17
| | |
| * | Remove duplicated comment.Quincey Koziol2018-11-301-9/+0
| | |
| * | Add a couple of missing prototypes for static routines, along with updatingQuincey Koziol2018-11-301-6/+6
| | | | | | | | | | | | a comment from VOL plugin -> connector.
| * | Correct "make check-vol" regression test target.Quincey Koziol2018-11-291-0/+2
| | |
| * | Switch H5VL_class_value_t from enum to unsigned integerQuincey Koziol2018-11-291-2/+5
| | |
| * | Add support for "make check-vol", along with a few minor cleanups, etc.Quincey Koziol2018-11-294-13/+14
| | |
| * | Refactor infrastructure for setting FAPL information from environmentQuincey Koziol2018-11-283-154/+217
| | | | | | | | | | | | | | | | | | variables during testing, including connecting native, pass-through, and dynamically loaded VOL connectors. Also bring native and pass-through VOL connectors into alignment, removing the "H5VLnative_private.h" header.
| * | Add using FAPL from h5_fileaccess() to more tests.Quincey Koziol2018-11-224-39/+194
| | |
| * | Remove unused test for unimplemented routine.Quincey Koziol2018-11-221-150/+0
| | |
| * | Revert some of the changes to support the original property list value ofQuincey Koziol2018-11-181-0/+11
| | | | | | | | | | | | metadata read attempts.
| * | Add VOL connector info to the flie access property list returned fromQuincey Koziol2018-11-181-5/+46
| | | | | | | | | | | | H5Fget_access_plist(). Also, other misc. cleanups, etc.
| * | Merge branch 'develop' of https://bitbucket.hdfgroup.org/scm/hdffv/hdf5 into ↵Quincey Koziol2018-11-072-17/+21
| |\ \ | | |/ | | | | | | stackable_vol
| | * HDFFV-10605 Only test plugins if SHARED enabledAllen Byrne2018-11-062-17/+21
| | |
| * | Switch driver | plugin => connector.Quincey Koziol2018-11-042-46/+48
| | |
| * | Merge branch 'develop' of https://bitbucket.hdfgroup.org/scm/hdffv/hdf5 into ↵Quincey Koziol2018-11-044-160/+209
| |\ \ | | |/ | | | | | | stackable_vol
| | * Fixed exit() to HDexit() in use_append_chunk.c and use_append_mchunks.cVailin Choi2018-11-012-4/+4
| | |
| | * Fixed fprintf to HDfprintf in the following routines:Vailin Choi2018-11-013-113/+113
| | | | | | | | | | | | | | | 1) read_uc_file() in use_common.c 2) main() of use_append_chunk.c and use_append_mchunks.c
| | * Fix for HDFFV-10554 use_append_chunks in swmr use case test failureVailin Choi2018-10-304-60/+109
| | | | | | | | | | | | | | | Fix the timing issue of the test by moving the open/close of the test file for the writer to use_append_chunk.c and use_append_mchunks.c.
| * | Refactor and standardize the link VOL callbacks. Also fix error stack forQuincey Koziol2018-11-011-7/+10
| | | | | | | | | | | | testing.
| * | Update for change in error stack when opening a dataset.Quincey Koziol2018-10-311-9/+12
| | |
| * | Refactor and standarize file object callbacks, including some fixes on theQuincey Koziol2018-10-311-10/+26
| | | | | | | | | | | | dataset callbacks.
| * | Move all callback-related routines into the callback source file, standardizingQuincey Koziol2018-10-281-2/+2
| | | | | | | | | | | | their coding style
| * | Remove virtual dataset refresh code's direct use of native VOL plugin's ID.Quincey Koziol2018-10-273-3/+10
| | |
| * | Checkpoint progress on stacking VOL plugins - all standalone regression testsQuincey Koziol2018-10-261-4/+2
| | | | | | | | | | | | in the 'test' directory appear to be working.
| * | Updates after merging changes from develop.Quincey Koziol2018-10-262-12/+12
| | |
| * | Merge branch 'develop' of https://bitbucket.hdfgroup.org/scm/hdffv/hdf5 into ↵Quincey Koziol2018-10-253-30/+30
| |\ \ | | |/ | | | | | | stackable_vol
| | * Split H5VLnative.h into public and private files and updatedDana Robinson2018-10-201-1/+1
| | |
| | * Updates to the VOL ID and object API calls.Dana Robinson2018-10-173-12/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This brings the H5VL code in line with the H5I code regarding naming, parameter order, etc. Several public API calls were affected by this change. These changed names to reflect their use with VOL drivers: H5VLregister() --> H5VLregister_driver() H5VLregister_by_name() --> H5VLregister_driver_by_name() H5VLunregister() --> H5VLunregister_driver() H5VLis_registered() --> H5VLis_driver_registered() This call was renamed to match H5Iregister(). The order of the first two parameters also reversed and the object pointer is now const. H5VLobject_register() --> H5VLregister()
| * | Squashed commit of private branch changes to support stackable VOL plugins.Quincey Koziol2018-10-259-33/+78
| |/ | | | | | | modified: test/dsets.c
| * VOL FEATUREDana Robinson2018-10-1037-430/+1726
| |
| * CMake changes for SKIPPED and flush testsAllen Byrne2018-09-242-13/+55
| |
| * Normalization with vol_integration (property lists, file drivers,Dana Robinson2018-09-211-2/+2
| | | | | | | | other misc).
| * Normalization with vol_integration (test code and H5Xtest.c)Dana Robinson2018-09-2036-1352/+1343
| |
| * Develop normalization with vol_integration.Dana Robinson2018-09-199-216/+225
| | | | | | | | | | Mostly peripheral things like the tools and wrappers, with just enough core library code to support that.
| * HD prefix and whitespaceAllen Byrne2018-08-288-1899/+1387
| |
* | change test file name and apply 'h5_fixname' to itJacob Smith2018-12-112-4/+7
| |
* | Sidestep and hide&flag minor issues causing test failures.Jacob Smith2018-12-052-18/+61
| |
* | Incorporate minimized dset ohdr tests into extant suite.Jacob Smith2018-11-194-1353/+1498
| |
* | Remove unused/redundant external file link testJacob Smith2018-09-201-151/+0
| |
* | Modify MTIME size behavior to be closer to expectations (we hope).Jacob Smith2018-09-201-21/+12
| | | | | | | | Minor code cleanup.
* | Continued progress in implementing tests.Jacob Smith2018-09-201-115/+153
| |
* | Make questionable tests fail with TODOsJacob Smith2018-09-141-0/+4
| |
* | Change to use internal routines to get dcpl minimize setting.Jacob Smith2018-09-141-0/+2
| | | | | | | | | | Fix external file/link problem: Include H5Fpkg.h to access file private variables directly.
* | Add modtime dataset to explicitly not trackJacob Smith2018-09-141-0/+25
| |
* | Refactor file- and dataset-creation code for easier reading.Jacob Smith2018-09-141-354/+368
| | | | | | | | | | Add modification message test logic. Minor formatting tweaks.
* | Remove redundant code and refactorJacob Smith2018-09-121-43/+4
| |