summaryrefslogtreecommitdiffstats
path: root/test/CMakeTests.cmake
Commit message (Collapse)AuthorAgeFilesLines
* Brings Mirror VFD to 1.10 from developDana Robinson2020-08-141-0/+2
|
* Brings splitter VFD from developDana Robinson2020-08-141-0/+2
|
* Fix test tmp dir usageAllen Byrne2019-08-151-5/+5
|
* HDFFV-10879 fix test varnameAllen Byrne2019-08-141-1/+1
|
* Correct error test spelling and useAllen Byrne2019-08-131-4/+32
|
* Add option to explicitly disable extra testsAllen Byrne2019-08-071-0/+2
|
* Cleanup when merging to other branchesAllen Byrne2019-07-301-73/+73
|
* Merging in latest from upstream (HDFFV/hdf5:refs/heads/hdf5_1_10)Allen Byrne2019-07-291-0/+75
|\ | | | | | | | | | | | | * commit 'b20ffd84e3572cd506bf1f696431892258e9ab3b': Updated the command for external_env and vds_env to the most recent changes. 1. Updated the commands for compiling two new tests (external_env.c and vds_env.c). 2. Changed the data file names for external.c and external_env.c to avoid potential name conflict. HDFFV-10658: setting and getting properties in API context. Porting the changes to the develop branch into the 1.10 branch: mainly the external file prefix and VDS prefix.
| * Updated the command for external_env and vds_env to the most recent changes.Songyu Lu2019-07-291-14/+8
| |
| * 1. Updated the commands for compiling two new tests (external_env.c and ↵Songyu Lu2019-07-291-122/+75
| | | | | | | | | | | | vds_env.c). 2. Changed the data file names for external.c and external_env.c to avoid potential name conflict.
| * HDFFV-10658: setting and getting properties in API context. Porting the ↵Songyu Lu2019-07-261-0/+128
| | | | | | | | changes to the develop branch into the 1.10 branch: mainly the external file prefix and VDS prefix.
* | HDFFV-10845, 10529 and CMake changes from developAllen Byrne2019-07-241-109/+79
|/
* Bring pull request #1729 from develop to 1.10:Vailin Choi2019-07-171-0/+1
| | | | | | Fix for HDFFV-10800 H5Ocopy failure: The value for the H5F_LIBVER_V18 index in H5O_fill_ver_bounds[], the format version bounds array for fill value message, should be version 3 not 2.
* HDFFV-10805 Merge SHARED ONLY option from developAllen Byrne2019-06-201-318/+67
|
* HDFFV-10703 - Update CMake variable handlingAllen Byrne2019-02-211-20/+20
|
* Script changes from developAllen Byrne2019-02-141-0/+2
|
* TRILAB-111 Update MPI CMakeAllen Byrne2019-02-131-52/+45
|
* Refactor TIMEOUT valuesAllen Byrne2019-02-061-10/+10
|
* Renamed data fileBinh-Minh Ribler2019-02-011-1/+1
| | | | | | | | | Description: Renamed data file with long name to a shorter name. Revised an entry in RELEASE.txt Platforms tested: Linux/64 (jelly) Darwin (osx1010test)
* Fixed HDFFV-10586, HDFFV-10588, and HDFFV-10684Binh-Minh Ribler2019-01-311-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | Description: HDFFV-10586 CVE-2018-17434 Divide by zero in h5repack_filters Added a check for zero value HDFFV-10588 CVE-2018-17437 Memory leak in H5O_dtype_decode_helper This is actually an Invalid read issue. It was found that the attribute name length in an attribute message was corrupted, which caused the buffer pointer to be advanced too far and later caused an invalid read. Added a check to detect attribute name and its length mismatch. The fix does not cover all cases, but it'll reduce the chance of this issue when a name length is corrupted or the attribute name is corrupted. HDFFV-10684 H5Ewalk does not stop until all errors in the stack are visited The test for HDFFV-10588 has revealed a bug in H5Ewalk. H5Ewalk did not stop midway even when the call back function returns H5_ITER_STOP. This is because a condition is missing from the for loops in H5E__walk causing the callback functions unable to stop until all the errors in the stack are iterated. Quincey advised on the final fix. In this fix, "status" is switched to "ret_value" and HGOTO_ERROR to HERROR, and the for loops won't continue when "ret_value" is not 0. Platforms tested: Linux/64 (jelly) Linux/64 (platypus) Darwin (osx1011test)
* Fix for HDFFV-10659: The library aborts with "infinite loop closing library"Vailin Choi2019-01-061-1/+20
| | | | | | | | after deleting attributes in densed storage. The fix: When deleting attribute nodes from the name index v2 B-tree, if an attribute is found in the intermediate B-tree nodes, which may be merged/redistributed in the process, we need to free the dynamically allocated spaces for the intermediate decoded attribute.
* Incoporate minimized dataset headers code and tests.Jacob Smith2018-12-311-0/+3
|
* HDFFV-10632 separate stderr and stdout in testsAllen Byrne2018-12-131-0/+4
|
* TRILABS: Merge CMake changes from developAllen Byrne2018-11-071-24/+26
|
* HDFFV-10594, 10332, 10531Allen Byrne2018-09-261-12/+54
|
* Add swmr tests, fix java scriptAllen Byrne2018-07-271-28/+104
|
* Merge pull request #1043 in HDFFV/hdf5 from ↵Dana Robinson2018-05-311-0/+1
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ~DEROBINS/hdf5_der:h5do_direct_chunk_hl_to_src to develop * commit '1da9c5545c013ebc540ba3044810889d4acfa5be': Restored some unused #defines to the deprecated section of H5Dpublic.h. Added deprecated symbol wrappers for the H5DOwrite/read_chunk wrappers. Updated commenting in the H5DO compat test. Stripped out most of the duplicated functionality in the H5DO compat test. * Added H5DO compatibility functions. * Changed the offset copy to use an array on the stack. * Yanked some unused #defines. * Fixed the error tests * Moved common functionality into helper functions Normalize with trunk prior to update merge Fixed a warning. Finished move of H5DOread/write_chunk calls to H5D. First stage of moving H5DOread/write_chunk() to src/ and making them H5D calls. * Moved H5DOread/write_chunk() to H5Dio.c and renamed to H5D*. * Moved the hl/test/test_dset_opt test to test/ and renamed to direct_chunk. * Moved the hl/test/dectris_hl_perf test to tools/test/perform and renamed to direct_write_perf. * Updated autotools and CMake files.
| * Merge branch 'develop' into h5do_direct_chunk_hl_to_srcDana Robinson2018-05-151-3/+3
| |\
| * \ Merge branch 'develop' into h5do_direct_chunk_hl_to_srcDana Robinson2018-04-301-0/+1
| |\ \
| * | | First stage of moving H5DOread/write_chunk() to src/ and makingDana Robinson2018-04-301-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | them H5D calls. * Moved H5DOread/write_chunk() to H5Dio.c and renamed to H5D*. * Moved the hl/test/test_dset_opt test to test/ and renamed to direct_chunk. * Moved the hl/test/dectris_hl_perf test to tools/test/perform and renamed to direct_write_perf. * Updated autotools and CMake files.
* | | | Fix MPI on Windows by adding MPI include folderAllen Byrne2018-05-091-1/+1
| |_|/ |/| |
* | | TRILABS-19 remove add_defintions and use generator expressionsAllen Byrne2018-04-261-3/+3
| |/ |/|
* | TRILABS-19 Initial conversion of include_directories to targetsAllen Byrne2018-04-171-0/+1
|/
* Use var instead of absolute numberAllen Byrne2018-04-051-2/+2
|
* Fix list varAllen Byrne2018-02-271-4/+5
|
* Fix IN_LIST usageAllen Byrne2018-02-271-2/+2
|
* Inc CMake min, Add new tests, rework test CMake filesAllen Byrne2018-02-271-458/+120
|
* Added gen_boundsBinh-Minh Ribler2018-02-081-0/+1
|
* HDFFV-10385 rename vars and macrosAllen Byrne2018-01-191-1/+1
|
* HDFFV-10385 Refactor out CMAKE_BUILD_TYPE usageAllen Byrne2018-01-181-1/+1
|
* HDFFV-10385 rework java namesAllen Byrne2018-01-171-1/+0
|
* Revert CMAKE_BUILD_TYPE for matches - need to redesignAllen Byrne2018-01-121-1/+1
|
* HDFFV-10385 refactor CMAKE_BUILD_TYPE usageAllen Byrne2018-01-091-1/+1
|
* HDFFV-9724 Corrected files and verified testsAllen Byrne2017-12-281-31/+45
|
* Revert "Merge pull request #826 in HDFFV/hdf5 from ~BYRN/hdf5_adb:develop to ↵lrknox2017-12-221-45/+31
| | | | | | | develop" This reverts commit b1223dd653e65e076af92b2dfe236f3704da81c8, reversing changes made to b25f123f5f5e25c1447a6a02861cb7c7265c12f2.
* Skip test if 1.6 APIAllen Byrne2017-12-191-30/+44
|
* HDFFV-9724 Add ENV VAR to vds testAllen Byrne2017-12-191-1/+1
|
* Plugin test reworkDana Robinson2017-11-091-6/+6
| | | | Cleanup of plugin test code. Renames many files. Prep for VOL branch merge.
* HDFFV-10297 add release note - fix test stepAllen Byrne2017-10-111-0/+2
|
* Fix STREQUAL if commands.Allen Byrne2017-10-021-5/+5
|