AuthorCommitMessageCommit dateIssues
Quincey KoziolQuincey Koziol
0324f055660[svn-r22915] Description: Bring Coverity changes back to trunk: r20399: Change parse_command_line to free hand structure on error and only "leave()" at end of main. r20400: Purpose: Fix coverity issue 592 Description: Added void cast to call to H5F_sfile_assert_num() in H5F_term)interface(). There is no need to check the return value of this function in general, and there would be nothing to do even if it did fail. r20401: Added free(src_sizes) and fre...
Raymond LuRaymond Lu
1c45b31cc67[svn-r22914] I checked in the conversion function H5T__conv_enum_numeric (numeric type means integer or floating number) and the C test for it. This is the work for Chicago.Tested on jam, koala, and ostrich.
Larry KnoxLarry Knox
33504deb83d[svn-r22908] Reverted changes in revision 22819Tested with h5committest on jam, koala and ostrich.
Allen ByrneAllen Byrne
6e6ba4f0640[svn-r22904] Fixed typo in name of cmake config file.Needed for installing multiple versions on windows.
Scot BreitenfeldScot Breitenfeld
2f798dc8429[svn-r22897] Cleaned up the comments, formatted for automatic documentation.
Scot BreitenfeldScot Breitenfeld
777884558aa[svn-r22896] Updated the robodoc resource file with new keywords and new optionsfor generating the documentation.
Allen ByrneAllen Byrne
348e91e02fd[svn-r22881] Correct datatype of scalar array of doublesTested: local linux
Albert ChengAlbert Cheng
10ab09069de[svn-r22879] Bug Fix: HDFFV 8017 dt_arith would fail in Lion and Mountain Lion system when GCC version 4.2.1 is used with --enable-production. Somehow the -O optimization will fail some of the hard conversion code.Solution: This is just a temporary patch by detecting if this is a Lion or Mountain Lion system using GCC 4.2.1, then just remove the any -O option from the PROD_CFLAGS. A better fix should be deviced later. Tested: Duck(lion) and Owl (mountain lion) tested with --enable-production. Also tested in Fred and Tejeda, both Snow Leopard systems to verify there is no undesired side effect.
Scot BreitenfeldScot Breitenfeld
990fdaed078[svn-r22878] Added bug fixes and enhancements since the last release.
Binh-Minh RiblerBinh-Minh Ribler
f7e1da0cfb5[svn-r22877] Description: Changed uint to unsigned so that no hdf5-specific header file is needed. Platform tested: Linux/32 2.6 (jam) - very minor
Scot BreitenfeldScot Breitenfeld
ac472bb111a[svn-r22876] Fixed exporting subroutines that will not be compiled if --enable-fortran2003was not used.
Quincey KoziolQuincey Koziol
cda42fdc77e[svn-r22866] Description: Correct use of 'uint8_t' parameter type in public header file (which was causing Windows builds to fail).Tested on: Mac OSX/64 10.7.5 (amazon) w/debug (too minor to require h5committest)
Scot BreitenfeldScot Breitenfeld
223bdd11730[svn-r22859] Fixed new functions that are used in the _F03 files, updated to reflect the correctmodule they are in.
Allen ByrneAllen Byrne
9603f61cda2[svn-r22857] Change def list of RGET_REGION to match other types declarations
Scot BreitenfeldScot Breitenfeld
3e59374ccd0[svn-r22854] Fixed issues with default 8-byte real and default 8-byte integers and the new H5O routines.Tested: jam (gcc,intel)
Allen ByrneAllen Byrne
7648354b80e[svn-r22853] Change def list of RGET_REGION to match other types declarations
Allen ByrneAllen Byrne
0f76f393ed8[svn-r22852] Add new files to library file listsTested: local linux
Albert ChengAlbert Cheng
41c8a10740d[svn-r22849] Updated with changes.
Albert ChengAlbert Cheng
fa935398b30[svn-r22848] Bug fix: HDFFV-8156 benchpar.c is compiled when configure --enable-build-all --enable-paralllel. But it failed to compile. It is decided to retire or move it to example. I removed it from the PARA_BUILD_ALL list so that --enable-build-all will not fail. The program file still need to be moved.Tested: Koala using --enable-build-all --enable-parallel. --in parallel mode.This line, and those below, will be ignored-- M perform/Makefile.in M perform/Makefile.amHDFFV-8156
Private HDFPrivate HDF
d4657ce2650[svn-r22846] Snapshot version 1.9 release 131
Binh-Minh RiblerBinh-Minh Ribler
9c3f82fbd76[svn-r22845] Purpose: Misc fixesDescription: Fixed miscellaneous inconsistencies and typos, which also took care of the failure in Packet Table test on daily test today. Platforms tested: Linux/32 2.6 (jam) Linux/64 2.6 (koala) Mac Lion (duck)
Scot BreitenfeldScot Breitenfeld
51bb0fe2d2d[svn-r22843] Renamed variable to match C.Tested: jam (gnu, mpich)
Scot BreitenfeldScot Breitenfeld
cc2669fedf9[svn-r22842] Fixed typo in variable.Tested: jam (gnu,mpich)
Scot BreitenfeldScot Breitenfeld
08a5424f603[svn-r22839] removed unused variable.tested: jam (pgi compiler)
Scot BreitenfeldScot Breitenfeld
5fba5c2e3aa[svn-r22838] Fixed typo in variable name.Tested: jam (pgi compiler)
Binh-Minh RiblerBinh-Minh Ribler
5aed216f479[svn-r22837] Description: Added c++/src/H5Location.h c++/src/H5Location.cpp
Binh-Minh RiblerBinh-Minh Ribler
5fcec401bd0[svn-r22836] Purpose: Fix bug HDFFV-533 and add other missing functionsDescription: In this bug, H5File doesn't have the ability to create attribute. The following changes will provide that functionality and several others that were also missing: - Added an abstract class H5Location in between IdComponent and H5Object. - New class structure of IdComponent, H5Location, H5Object, H5File IdComponent ...HDFFV-533
Albert ChengAlbert Cheng
e488529430a[svn-r22834] Documented HDFFV-8069 fix.HDFFV-8069
Jonathan KimJonathan Kim
2752394064c[svn-r22832] Update the CMake reference files list correctly for newly added encoded property list files.
Albert ChengAlbert Cheng
e5540864679[svn-r22830] Bug fix: HDFFV-8069 AIX config file Fortran flags need fix Description: The Fortran compiler flags were all set to "-O". They should be different setting for different situations. E.g, "-g" for debug and "-pg" for profile, etc. Fix: set them to appropriate different values. Tested: in Remote ADA AIX machines using 3 different settings: configure --enable-fortran --enable-cxx # default to --disable-production configure --enable-fortran --e...HDFFV-8069
Scot BreitenfeldScot Breitenfeld
485b5dea693[svn-r22829] Fixed merge mistake, merge removed part of the subroutine.tested: jam (intel)
Scot BreitenfeldScot Breitenfeld
7b9929e3095[svn-r22828] HDFFV-8007:Add missing H5O Fortran functions Added new F03 test file for new H5O functions.HDFFV-8007
Scot BreitenfeldScot Breitenfeld
0878e52087a[svn-r22827] HDFFV-8007: Add missing H5O Fortran functions.Tested: jam(gnu,intel) HDFFV-8007
Scot BreitenfeldScot Breitenfeld
393852a414d[svn-r22826] Fix for: HDFFV-7903 Fortran problem writing control character to a datasetreconfiguredHDFFV-7903
Scot BreitenfeldScot Breitenfeld
32a131ea70f[svn-r22825] Fix for: HDFFV-7903 Fortran problem writing control character to a datasetTested: (jam, gfortran)HDFFV-7903
Scot BreitenfeldScot Breitenfeld
a81cc2ac7ef[svn-r22824] FIX: HDFFV-8118: Support Fortran compiler flags that change the default size of integer and realTested: jam(gnu,intel), machine with gcc 4.7 and C long double = 16 bytes. HDFFV-8118
Scot BreitenfeldScot Breitenfeld
0710ab3955c[svn-r22823] Fix for HDFFV-7658: Add FORTRAN interface for H5Pget_mpio_actual_io_mode API routine Test: jam (gnu)HDFFV-7658
Scot BreitenfeldScot Breitenfeld
dbf542c0080[svn-r22822] Fix for HDFFV-7658: Add FORTRAN interface for H5Pget_mpio_actual_io_mode API routine Test: jam (gnu) HDFFV-7658
Quincey KoziolQuincey Koziol
0ae06ebea6c[svn-r22820] Description: Update the CMake reference files list for newly added encoded property list files.
Larry KnoxLarry Knox
c5371d76189[svn-r22819] Added H5BLD_STATIC and HDF5_USE_SHLIB to configure.ac so that if configured with --disable-static the default for HDF5_USE_SHLIB in the compile scripts will be changed to yes. This is a fix for HDFFV-8141, where the compile scripts try to link to non-existant static hdf5 libraries.Tested on jam,koala,ostrich(h5committest) and other THG machines. HDFFV-8141
Quincey KoziolQuincey Koziol
7702c7f760f[svn-r22817] Description: Update CMake files for new encode/decode property list files.
Jonathan KimJonathan Kim
563990e64ec[svn-r22816] Failed on Mac for testing tscalarintsize and tscalarattrintsize from daily test.Larry mentioned that intel compiler was used on Mac for testing. Allen requested comment it out. "It is not scheduled for 1.8, I created the file for Java testing. Actually I have to create windows versions because of the use of floating point." - Allen
Raymond LuRaymond Lu
4f9adf902bb[svn-r22815] Issue 8164 - test_image.c printed an extra "FAILED" after it succeeded. A test function doesn't return 0 after it succeeds. It goes down to the error handling branch and prints "FAILED". The fix is adding "return 0;" in the end of the function. Tested on jam - simple change.
Quincey KoziolQuincey Koziol
392b7d32492[svn-r22808] Description: Correct location of property list files.
Quincey KoziolQuincey Koziol
6a89177036b[svn-r22807] Description: Add encode/decode API routines for property lists: H5Pencode/H5Pdecode.Tested on: FreeBSD/32 8.2 (loyalty) w/gcc4.6, w/C++ & FORTRAN, in debug mode FreeBSD/64 8.2 (freedom) w/gcc4.6, w/C++ & FORTRAN, in debug mode Linux/32 2.6 (jam) w/PGI compilers, w/default API=1.8.x, w/C++ & FORTRAN, w/threadsafe, in debug mode Linux/64-amd64 2.6 (koala) w/Intel compilers, w/default API=1.6.x, w/C++ & FORTRAN, in p...
Jonathan KimJonathan Kim
50e3990f2a9[svn-r22805] Purpose: HDFFV-8012 - h5repack changes max dims and cause failure if only "-f none" is used without changing layout for chunked dataset when a chunk dim is bigger than a dataset dimDescription: "h5repack -f <obj>:NONE <file.h5> out.h5" command failed if source file contains chunked dataset and a chunk dim is bigger than a dataset dim. Another issue is that the command changed max dims if chunk dim is smaller than the dataset dim. These issue occurred when dataset size is smaller than 64k (compact size limit) Fixed them. Tested: jam (linux32-LE), ko...HDFFV-8012
Private HDFPrivate HDF
528bd520b83[svn-r22802] Snapshot version 1.9 release 130
Albert ChengAlbert Cheng
443d3429056[svn-r22799] Documented the retiremen of mpi-perf.
Allen ByrneAllen Byrne
d834917bca0[svn-r22795] Create scalar test files and h5dump tests.Tested: local linux
Albert ChengAlbert Cheng
fcea67a3c28[svn-r22793] Updated to reflect the removal of perform/mpi-perf.c.