Commit Graph

16507 Commits

Author SHA1 Message Date
Allen Byrne
ca8aeefeba MS keeps changing names 2017-02-24 10:57:58 -06:00
Allen Byrne
ccee75d3e9 Update docs and scripts for release 2017-02-24 10:27:36 -06:00
Binh-Minh Ribler
4fc97f2853 Merge branch 'develop' of https://bitbucket.hdfgroup.org/scm/~bmribler/hdf5_bmr_cpp into develop 2017-02-23 16:54:38 -06:00
Binh-Minh Ribler
d7c6fa00da Purpose: Add new C++ wrappers
Description:
    Added wrappers for H5Fget_info2, H5Inmembers, and H5Itype_exists

        // Gets general information about this file.
        void getFileInfo(H5F_info2_t& file_info) const;

        // Returns the number of members in a type.
        static hsize_t getNumMembers(H5I_type_t type);

        // Determines if an element type exists.
        static bool typeExists(H5I_type_t type);

Platforms tested:
    Linux/32 2.6 (jam)
    Linux/64 (jelly)
    Darwin (osx1010test)
2017-02-23 16:53:16 -06:00
Allen Byrne
64e1513f43 Smale changes from CMake repo 2017-02-23 16:32:06 -06:00
Dana Robinson
ed4fa57298 Merge pull request #309 in HDFFV/hdf5 from ~DEROBINS/hdf5_der:develop to develop
* commit 'd2692f782a1ce660a855b2459e187e3e9425002d':
  Minor fix for duplicated H5Pclose() call in C++ tests.
2017-02-23 14:51:27 -06:00
Quincey Koziol
42bbd8b6b0 Merge pull request #308 in HDFFV/hdf5 from merge_page_buffering_03 to develop
* commit 'c3321cba03450d8d70934505f40676c3a530a2cb':
  Fix some more signed -> unsigned value issues with cache data structures, also misc. style cleanups.  All to align w/incoming page_buffering changes.
2017-02-23 11:14:28 -06:00
Dana Robinson
d2692f782a Merge branch 'develop' of https://bitbucket.hdfgroup.org/scm/~derobins/hdf5_der into develop 2017-02-23 12:08:28 -05:00
Dana Robinson
dca632bd96 Minor fix for duplicated H5Pclose() call in C++ tests. 2017-02-23 12:07:44 -05:00
Quincey Koziol
c3321cba03 Merge branch 'develop' of https://bitbucket.hdfgroup.org/scm/hdffv/hdf5 into merge_page_buffering_03 2017-02-22 23:23:00 -08:00
Quincey Koziol
4b5e05c084 Fix some more signed -> unsigned value issues with cache data structures, also
misc. style cleanups.  All to align w/incoming page_buffering changes.
2017-02-22 23:21:41 -08:00
Dana Robinson
054cc1af29 Merge pull request #307 in HDFFV/hdf5 from ~DEROBINS/hdf5_der:develop to develop
* commit 'a247e3367847567de1b605bfb63e19e06ee582e9':
  Changed C++ comments to C comments in H5win32defs.h.
2017-02-22 19:49:03 -06:00
Dana Robinson
a247e33678 Changed C++ comments to C comments in H5win32defs.h. 2017-02-22 17:41:42 -05:00
hdftest
1fe01afe29 Merge pull request #304 in HDFFV/hdf5 from ~LRKNOX/hdf5_lrk:develop to develop
* commit 'be6e9282f6ed824c367d364b4edd79d00b23f9f1':
  Make release script fail and return failing exit code when any of the steps for creating the docs.tar file fails.
  h5vers:     Added code to update version strings in     config/cmake/scripts/HDF5config.cmake.
2017-02-22 16:08:20 -06:00
Allen Byrne
b55626e071 Merge pull request #305 in HDFFV/hdf5 from ~BYRN/hdf5_adb:develop to develop
* commit 'e545f474a507e68e6fdbe295b54e82343f020ca4':
  Correct filename typo
2017-02-22 09:57:37 -06:00
Allen Byrne
e545f474a5 Correct filename typo 2017-02-22 08:43:34 -06:00
lrknox
be6e9282f6 Make release script fail and return failing exit code when any of the steps for creating the docs.tar file fails. 2017-02-21 16:34:05 -06:00
lrknox
6924e1f9f8 h5vers:
Added code to update version strings in
    config/cmake/scripts/HDF5config.cmake.

release:
    Added options to create CMake tar.gz and zip files containing the
    HDF5 source and scripts to build and test HDF5 with cmake and ctest
    by running a single command.  These were previously assembled
    manually.

    Added a call to h5vers to set the version being released where it
    occurs in files.  In particular, the sub-release version string
    "currently under development" was not being removed from
    cpp_doc_config or HDF5config.cmake.
2017-02-21 15:18:17 -06:00
Allen Byrne
7238751d5a Merge pull request #303 in HDFFV/hdf5 from ~BYRN/hdf5_adb:develop to develop
* commit '71cea2112f2445cd03ec6704e42671913aff11f9':
  Add new cmake options file
2017-02-20 09:16:19 -06:00
Allen Byrne
71cea2112f Add new cmake options file 2017-02-20 09:11:44 -06:00
Quincey Koziol
2c2fb928da Merge pull request #302 in HDFFV/hdf5 from merge_page_buffering_02 to develop
* commit '101fa7af8ebe26ad015b64d3b881df8a9124ccc2':
  Cleanups and normalizations against incoming page_buffering changes.
  Switch major error code from H5E_FSPACE [back] to H5E_RESOURCE
  Misc. style cleanups from the page_buffering branch.
2017-02-19 22:33:22 -06:00
Quincey Koziol
101fa7af8e Cleanups and normalizations against incoming page_buffering changes. 2017-02-19 18:28:52 -08:00
Quincey Koziol
4a42b04e59 Switch major error code from H5E_FSPACE [back] to H5E_RESOURCE 2017-02-18 15:42:25 -08:00
Quincey Koziol
b26b684339 Misc. style cleanups from the page_buffering branch. 2017-02-18 15:29:09 -08:00
Binh-Minh Ribler
7e4b64bd83 Merge pull request #298 in HDFFV/hdf5 from ~BMRIBLER/hdf5_bmr_cpp:develop to develop
New C++ wrappers for H5P[s/g]et_file_space.

* commit '5f759d6d9f804d99572f605f9d9933c897ef3671':
  Description:     Fixed and added function comments. Platform tested:     Jam (very minor)
  Description:     Fixed small typos Platform tested:     Jam (very minor)
  Purpose: Add new C++ wrappers Description:     Added wrappers for H5Pset_file_space and H5Pget_file_space
2017-02-17 15:34:43 -06:00
Larry Knox
9fba21485d Merge pull request #295 in HDFFV/hdf5 from ~LRKNOX/hdf5_lrk:develop to develop
* commit '92f4153a86a6a77f8d10507f3f922677da19a4b9':
  Resolve missed conflicts.
  Remove references to SVN.
  Check in changes to snapshot script from hdfdts repository to copy in HDF5 develop branch.  Most of the changes are for the switch from subversion to it repositories.  This copy is not used for THG daily tests, but is available for testing on remote machines.
2017-02-17 15:33:39 -06:00
lrknox
92f4153a86 Resolve missed conflicts. 2017-02-17 15:32:07 -06:00
lrknox
4b0de5860f Merge branch 'develop' of https://bitbucket.hdfgroup.org/scm/~lrknox/hdf5_lrk into develop 2017-02-17 15:29:41 -06:00
lrknox
a22a9fe733 Remove references to SVN. 2017-02-17 15:16:15 -06:00
Allen Byrne
adfe442b6b Merge pull request #301 in HDFFV/hdf5 from ~BYRN/hdf5_adb:develop to develop
* commit 'c37ecd5bba292e2b594547e0eeb6a385d20194b0':
  Add MPI_Fortran variables
2017-02-17 15:01:39 -06:00
Allen Byrne
c37ecd5bba Add MPI_Fortran variables 2017-02-17 12:43:47 -06:00
Allen Byrne
c4a208819d Merge pull request #300 in HDFFV/hdf5 from ~BYRN/hdf5_adb:develop to develop
* commit '46bd5d0d95b83e4cd703907b0d950ef1ab6b309e':
  Correct name of file
  Update cmake build scripts, split out options to seprate file
2017-02-17 12:41:50 -06:00
Allen Byrne
46bd5d0d95 Correct name of file 2017-02-17 11:39:16 -06:00
Allen Byrne
229033fea6 Update cmake build scripts, split out options to seprate file 2017-02-17 11:37:43 -06:00
Allen Byrne
792a75afe1 Merge pull request #296 in HDFFV/hdf5 from ~BYRN/hdf5_adb:develop to develop
* commit '08b5edca0b6df7c50696ecf777ae5f108b19a953':
  Fix parallel h5diff test comapare
  Set depends test dependency for parallel h5diff
  Convert string APPEND to set commands
  Revert whitespace
  Close file before trying to remove it
2017-02-16 10:16:19 -06:00
Binh-Minh Ribler
5f759d6d9f Description:
Fixed and added function comments.
Platform tested:
    Jam (very minor)
2017-02-16 00:35:44 -06:00
Binh-Minh Ribler
f51f05ec20 Description:
Fixed small typos
Platform tested:
    Jam (very minor)
2017-02-15 09:15:06 -06:00
Binh-Minh Ribler
40b13c7445 Purpose: Add new C++ wrappers
Description:
    Added wrappers for H5Pset_file_space and H5Pget_file_space

        // Sets the strategy and the threshold value that the library will
        // will employ in managing file space.
        void setFileSpace(H5F_file_space_type_t strategy, hsize_t threshold) const;

        // Returns the strategy that the library uses in managing file space.
        H5F_file_space_type_t getFileSpaceStrategy() const;

        // Returns the threshold value that the library uses in tracking free
        // space sections.
        hsize_t getFileSpaceThreshold() const;

Platforms tested:
    Linux/32 2.6 (jam)
    Linux/64 (jelly)
    Darwin (osx1010test)
2017-02-15 09:01:05 -06:00
Allen Byrne
08b5edca0b Fix parallel h5diff test comapare 2017-02-14 14:59:57 -06:00
Allen Byrne
5e87ada674 Set depends test dependency for parallel h5diff 2017-02-14 13:51:34 -06:00
Allen Byrne
00cd884aed Convert string APPEND to set commands 2017-02-14 12:12:32 -06:00
Allen Byrne
220cf7d326 Revert whitespace 2017-02-13 14:16:24 -06:00
Allen Byrne
960f694197 Close file before trying to remove it 2017-02-13 14:11:13 -06:00
lrknox
f37f35245d Check in changes to snapshot script from hdfdts repository to copy in
HDF5 develop branch.  Most of the changes are for the switch from
subversion to it repositories.  This copy is not used for THG daily
tests, but is available for testing on remote machines.
2017-02-13 09:18:12 -06:00
Dana Robinson
fc8866d41e Merge pull request #294 in HDFFV/hdf5 from ~DEROBINS/hdf5_der:develop to develop
* commit 'd875f7f3e65754f5618246cec47a75690a58e80c':
  Minor warning fixes.
2017-02-09 10:53:03 -06:00
Dana Robinson
d875f7f3e6 Minor warning fixes. 2017-02-09 11:44:38 -05:00
Dana Robinson
0399f55c54 Merge pull request #292 in HDFFV/hdf5 from ~DEROBINS/hdf5_der:develop to develop
* commit '46ede7f0399d4adf2696193ea083bffdfcc69f7e':
  Deleted an extraneous remove() call from a test function that might be causing the flushrefresh test to fail.
2017-02-08 14:04:11 -06:00
Dana Robinson
46ede7f039 Deleted an extraneous remove() call from a test function
that might be causing the flushrefresh test to fail.
2017-02-08 14:49:25 -05:00
Dana Robinson
9fbb672eb4 Merge pull request #291 in HDFFV/hdf5 from ~DEROBINS/hdf5_der:develop to develop
* commit 'bb354058c00e276aece09ec13431d7ae2c5ff041':
  Added #ifdef QAK macros around log VFD calls in SWMR acceptance tests.
2017-02-08 11:09:27 -06:00
Dana Robinson
bb354058c0 Added #ifdef QAK macros around log VFD calls in SWMR acceptance
tests.
2017-02-08 11:29:04 -05:00