| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
| |
developers.
Tested: local linux
|
|\
| |
| |
| |
| | |
This is the fix for "switch missing default case" warnings in src.
Mohamad & Vailin worked on this patch.
|
| |
| |
| |
| |
| |
| |
| | |
Rename static functions in H5Adense.c, H5B2cache.c, H5Bcache.c
Switch these functions to use FUNC_ENTER_STATIC* macros
Tested: koala
|
| | |
|
| |
| |
| |
| |
| |
| | |
script.
Tested: local linux
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| | |
Clean up compiler warnings
Tested on:
Mac OSX/64 10.8.4 (amazon) w/C++ & FORTRAN
(too minor to require h5committest)
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
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.
|
| |
| |
| |
| |
| |
| |
| | |
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.
|
| |
| |
| |
| |
| |
| |
| |
| | |
Clean up a few warnings
Tested on:
Mac OSX 10.8.4 (amazon) w/C++ & FORTRAN
(too minor to require h5committest)
|
| |
| |
| |
| | |
Tested: cygwin
|
| | |
|
| |
| |
| |
| |
| |
| | |
Also remove GetConsoleScreenInfo check from cygwin configure.
Tested: h5committest
|
| |
| |
| |
| | |
Updated CDash site name in cmake script.
|
| |
| |
| |
| |
| |
| | |
correct math of adding a NULL to a string.
Tested: local linux (valgrind) and h5committest
|
| | |
|
| |
| |
| |
| |
| |
| | |
New test added, scripts updated, help text updated.
Tested: local linux
|
| | |
|
| | |
|
| | |
|
| |
| |
| |
| |
| |
| |
| | |
Make compiler happier and issue less warnings.
Tested on:
Mac OSX/64 10.8.4 (amazon) w/gcc 4.8
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Tested: 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
|
|\ \
| |/ |
|
| |
| |
| |
| | |
H5HF_sect_single_dblock_info prototype
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
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 combinations of
case OTHER:
default:
See crucible review HDF5-145 for more details.
|
| | |
|
| |
| |
| |
| |
| |
| | |
Remove unused param (src) and unused var (hl) warnings
Tested on koala
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
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.
|
| | |
|
| | |
|
| | |
|
| |
| |
| |
| | |
h5committested.
|
| |
| |
| |
| |
| |
| | |
#23975 for bug HDFFV-1238.
h5committested.
|
| |
| |
| |
| |
| |
| |
| |
| |
| | |
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 maximum dimension size for 1-D dataset in dataset_stats() (tools/h5stat/h5stat.c)
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| | |
output and comment.
Jira issue HDFFV-8493.
No test - text only change.
|
| |
| |
| |
| | |
Tested: local linux
|
| |
| |
| |
| | |
Tested: local linux
|
| |
| |
| |
| |
| |
| | |
binary mode.
Tested: windows
|
| |
| |
| |
| | |
using file stream for output data
|
| |
| |
| |
| | |
Tested: local linux
|
| | |
|
| |
| |
| |
| | |
Plus some indentation cleanup on other entries.
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
tools/h5diff/testh5diff.sh is run in every "make check", even after it
has passed in the previous run.
The error was in the previous change made to Makefile.am
when testh5diff.sh.in was created. The mistake was in the
SCRIPT_DEPEND=h5diff$(EXEEXT) $(H5PDIFF) $(srcdir)/testh5diff.sh
$(srcdir)/testh5diff.sh no longer existed. It is now generated in the
current built directory from $(srcdir)/testh5diff.sh.in (which configure
takes care of).
I updated the dependance to
SCRIPT_DEPEND=h5diff$(EXEEXT) $(H5PDIFF) testh5diff.sh
and that fixes the error.
Reviewed: HDF5-149
Tested: h5committested.
|
| | |
|
| | |
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Merge changes from Coverity branch to trunk:
r20768:
Switch to snprintf, HDstrncat, HDstrncpy to address coverity issue 832.
r20812:
Use HDstrncpy. --gh
Tested on:
Mac OSX/64 10.8.4 (amazon) w/debug
Linux/32 2.4 (jam) w/debug
|
| |
| |
| |
| |
| |
| | |
Add comment referring users to information regarding
SZIP copyright and license terms.
-- Addresses HDFFV-300.
|
| | |
|