[svn-r24087] Rename the private H5RC (reference count) module to H5UC (Use Count). This is needed to avoid a conflict with the Read Context object to be introduced in another Project.No impact on users, since this is a private module, and low for
developers as the RC module use is very sparse in the library.
Tested with h5committest.
[svn-r24077] Updated -help output for compile scripts for changing default from -noshlib to -shlib when hdf5 is built without static libraries (--disable-static).Tested with h5committest on jam, koala, ostrich and platypus.
[svn-r24053] HDFFV-8498: --minimum option was disabled by HDFFV-8214. Reverted code change and changed default to 0 from 1024. Changed limit test to use h5dump to compare repacked file instead of h5diff.Corrected test scripts for test folder path
Tested: h5committest and local linux with CMake
[svn-r24050] HDFFV-8498: --minimum option was disabled by HDFFV-8214. Reverted code change and changed default to 0 from 1024. Changed limit test to use h5dump to compare repacked file instead of h5diff.Tested local linux with CMake
[svn-r24030] Description: Clean up more compiler warnings.Tested on:
Mac OSX/64 10.8.4 (amazon) w/gcc, C++ & FORTRAN
(too minor to require h5committest)
[svn-r24027] merge r 23938 from reduce warnings branch into trunk.This is the fix for "switch missing default case" warnings in src.
Mohamad & Vailin worked on this patch.
[svn-r24017] Bug fix: HDFFV-8500 The new gcc v4.8.* compilers does not work well with dt_arith which failed in production mode.Solution:
A temporary patch by removing any optimization (-O*) from the PROD_CFLAGS
so that dt_arith will pass for now. A more through investigation is needed.
Tested: Jam and Koala where it failed and now passes.
[svn-r24015] A bug fix when merging changes from the trunk to 1.8 for h5stat bug fix HDFFV-1238:Fix a problem when using opt_arg that is NULL for the new options added: -l N, -m N, -a N.
h5committested.
[svn-r24002] Fix 32-bit and valgrind issues with new handle_paths code - correct math of adding a NULL to a string.Tested: local linux (valgrind) and h5committest
[svn-r23987] Merge r23939 from reduce_warning branch to trunkTested: jam, koala, ostrich (h5committest)
Log from r23939:
Fix unused variables warnings in trunk
Rename static functions in H5Adense.c, H5B2cache.c, H5Bcache.c
Switch these functions to use FUNC_ENTER_STATIC* macros
Tested: koala
[svn-r23984] Merged 2 23932 from reduced_warnings branch: Changes applied to eliminate several compiler warnings in the test directory in files: dt_arith.c filter_fail.c big.c dynlib2.c dynlib3.c Also an HDassert(0 && "Unknown type"); statement was added to all 29 combination s of case OTHER: default: See crucible review HDF5-145 for more details.Tested with h5committest.
[svn-r23975] This checkin contains--A) Fix for HDFFV-1238:
--Add 3 new options to allow users in setting threshold for small groups/datasets/attributes (tools/h5stat/h5stat.c)
--Generate new test file for testing the new options (tools/h5stat/h5stat_gentest.c)
--Add tests for the new options (tools/h5stat/testh5stat.sh.in)
--Update expected output files (tools/h5stat/testfiles/*.ddl)
B) Fix a bug in determining maximu...