AuthorCommitMessageCommit dateIssues
Quincey KoziolQuincey Koziol
d9a305afb76[svn-r19207] Description: Switch from using "UINT16_MAX" to "64 * 1024" for assert macro.Tested on: None, just eyeballed.
Albert ChengAlbert Cheng
c756d89cf83[svn-r19205] Bug 1917: post cleanup.fseek64 was used to support large file access for the STDIO driver back in version 1.2.2 in year 2000. Some how it was not included in version 1.4.0. Now, fseeko64 is used to support large file. There is no more need for fseek64 which is not a standard call. Removed its presence from configure and related files. Tested: jam for configure only.
Allen ByrneAllen Byrne
237e3def524[svn-r19203] new expected output file for BZ1953 fix
Allen ByrneAllen Byrne
eee9ca47a18[svn-r19202] [BZ1953]implementation for the proposed changes suggested by the "h5dump_output_option" RFC. This required that the region reference code be duplicated and reduced to allow the do_bin_output() function to understand region references. The container type-id also needed to be propagated into the do_bin_output() function and functions referenced (render_bin_output*).Existing tests tested the binary function, so only one test was added to test the region reference generated file. Tested: local linux
Allen ByrneAllen Byrne
c1aa958992f[svn-r19201] Added tests that subdirectories exist before using ADD_SUBDIRECTORY CMake command Added cache set command for default install prefixTested: local linux
Albert ChengAlbert Cheng
3d1da26381b[svn-r19195] Bug fix: ID 1917 Fixed a typo in the Windows definitions. Had __ftelli64, should be _ftelli64.Tested by Allen in Windows platform.
Albert ChengAlbert Cheng
b1f07ee3971[svn-r19188] Bug fix: ID 1917The STDIO only checked for fseeko and incorrectly assumed it can support file sizes larger than 32bits. Fixed it by making to use fseeko64 if supported, else use fseeko. To simplify the code, assume fseeko which is a POSIX function must be supported. Therefore, fseek is not used at all. (Note: the above applies to Unix-like system. The Windows platform has hardcoding using Windows functions w...
Albert ChengAlbert Cheng
36e716eda03[svn-r19185] Bug fix: ID 1917In some machine (Linux), when --disable-largefile is used, it claims it has fseeko64 but off64_t is NOT supported. Moved the test of fseeko64 and ftello64 to where fseek64 is so that they are tested only if off64_t is supported. Tested: h5committested.
Allen ByrneAllen Byrne
6d22b609318[svn-r19183] Corrected h5repack verbose test for windows Updated tools/lib source dir variable for source listTested: local linux
Allen ByrneAllen Byrne
5e2d5978e48[svn-r19181] Added new h5repack test for bug1797 to CMakeLists.txt. Added corrected changes to test script for verbose filtersTested: local linux
Quincey KoziolQuincey Koziol
0de252524df[svn-r19179] Description: Bring changes from Coverity branch back to trunk:r19079 & 19080: [BZ1942] h5dump -u to generate XML, it does not respect the -m option xml version of dump_data function didn't check for use of fp_format variable. Added new test expected file for committed bug 1942 r19103, 19104 & 19105: [BZ1821] h5repack -v did not display correct output for a selected compression. Needed new test for comparing output of -v option. Added new test file fo...
Raymond LuRaymond Lu
1fe94ec545b[svn-r19176] Bug fix for #1239 - The filter's public function CAN_APPLY should return htri_t not herr_t. To minimize the change of the library's behavior, in the function H5Z_prelude_callback of H5Z.c, if the return value of can_apply is FALSE and the filter is MANDATE, this function returns a FAILURE. If the return value is FALSE but the filter is OPTIONAL, this function returns a SUCCEED. ...Tested the same change for 1.8 on jam, linew, and amani. Tested on jam with szip.
Raymond LuRaymond Lu
ddf5c9caa55[svn-r19175] Bug fix for #1239 - The filter's public function CAN_APPLY should return htri_t notherr_t. To minimize the change of the library's behavior, in the function H5Z_prelude_callback of H5Z.c, if the return value of can_apply is FALSE and the filter is MANDATE, this function returns a FAILURE. If the return value is FALSE but the filter is OPTIONAL, this function returns a SUCCEED. During the IO, the filter will fail and return a size of zero. But the pipeline will skip this f...
Raymond LuRaymond Lu
abf4926632d[svn-r19174] Bug fix for #1239 - The filter's public function CAN_APPLY should return htri_t not herr_t. To minimize the change of the library's behavior, in the function H5Z_prelude_callback of H5Z.c, if the return value of can_apply is FALSE and the filter is MANDATE, this function returns a FAILURE. If the return value is FALSE but the filter is OPTIONAL, this function returns a SUCCEED...Tested on jam, lnew, and amani. Tested on jam with szip.
Raymond LuRaymond Lu
1b5fdb13ba8[svn-r19173] Took out several redundant lines when object IDs are closed.Tested on jam.
Albert ChengAlbert Cheng
dc51db6583a[svn-r19171] Bug fix: 1917.The previous fix had the Windows code in H5private.h but they should have been in H5win32defs.h which holds all Windows-specific definitions. Moved the fix. Tested: BP (AIX) to confirm the fix is still valid. Windows tests will occur in daily tests tonight.
Quincey KoziolQuincey Koziol
e86d77f479b[svn-r19168] Description: Clean up some compiler warnings.Tested on: Linux 2.6/64 (abe) w/parallel
Albert ChengAlbert Cheng
41f0057dbc1[svn-r19167] Bug fix: 1917.Description: test/big incorrectly determined not able to write files larger than 2GB and skipped the SEC2 and STDIO driver tests. The reason was because it was using off_t while the SEC2 driver is using lseek64 which expects off64_t type. Solution: Created a new HDoff_t which is set to off_t or off64_t or other appropriate type depending on which of lseek or lseek64 is available. Changed SEC2...
Allen ByrneAllen Byrne
2d8a18a1fda[svn-r19165] Add configure changes from r19160 to CMake.
Albert ChengAlbert Cheng
02e41acebb2[svn-r19160] Added the tests for fseeko64 and ftello64 which will be used by the STDIO VFD if they are available.Tested: jam only since it was tests for two new functions that are not used by the code yet.
Quincey KoziolQuincey Koziol
eff803f8249[svn-r19156] Description: Bring revisions from Coverity branch back to trunk:r19044: Coverity #449 - Line 1560 called function H5O_chunk_protect for 2 pointers to allocate. But when there's failure on the second one, the first wasn't freed (H5O_chunk_unprotect). We fixed it by freeing the pointers when an error happens. r19045: Fixed coverity issue # 319. Free sec_node in done if it is not NULL. r19046: Add intended but missing assignments to initialize pointers to...
Quincey KoziolQuincey Koziol
7fe87a24722[svn-r19153] Description: Bring changes on Coverity branch back to trunk:r19040: Fixed coverity #440 - NULL check after dereference. We moved the NULL check up into the IF block and changed it to assertion. r19041: Maintenance: Addressed Coverity issues 441 and 449 by initializing proper variables r19042: In function H5O_chunk_protect (H5Ochunk.c): - Initialize H5O_chunk_proxy_t pointers chk_proxy and ret_value. - Free chk_proxy on error. r19043: Addressed cov...
Raymond LuRaymond Lu
178b80b679b[svn-r19150] Correction from the previous checkin for H5Oattribute.c. Because the attribute structure i is shared now. The only situation that requires copying the data is when the metadata cache evicts and reloads this attribute. The attribute structure will be different in that situation. Tested on jam.
Elena PourmalElena Pourmal
0357b5ad527[svn-r19148] Maintenance: Removed misleading information about the HDF4-to-HDF5 tools. The tools became a part of the h4h5tools distribution long time ago, but the INSTALL file was not updated in the development branch and slipped into 1.8 releases and current trunk.
Neil FortnerNeil Fortner
dd01261ac1c[svn-r19146] Purpose: Fix bug in direct IO driverDescription: In certain circumstances, the direct I/O driver did not perform correctly when data was unaligned. The driver has been patched to fix this. Also added some potential performance improvements for the unaligned case, and strengthened the test for whether the data needs to be aligned. Tested: cobalt
Raymond LuRaymond Lu
51a30dbdb7e[svn-r19144] Update for bug fix #1956.
Raymond LuRaymond Lu
bff519a7c7e[svn-r19142] I added H5Itest.c.Not tested yet.
Raymond LuRaymond Lu
7e2ed5735a5[svn-r19140] In line 861, there's no need to allocate data buffer or copy the data because the attribute structure is shared now. Only do an assertion check, instead.Tested the same change for 1.8.5 on jam - simple change.
Allen ByrneAllen Byrne
b49f46fe152[svn-r19135] Added new file to windows project files.Added new file to src/CMakeLists.txt
Quincey KoziolQuincey Koziol
0b7306beed3[svn-r19133] Description: Correct traversal of user-defined links (including external links) to retain path information of object, allowing H5Iget_name() queries to work quickly (without searching entire destination file). This required some refactoring and addition of a mechanism to detect if a "fast" query was performed (for the tests). Minor code cleanups, etc. Tested on: FreeBSD/32 6.3 (duty) in debug mode FreeBSD/64 6.3 (liberty) 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 (amani) w/Intel compilers, w/default API=1.6.x, w/C++ & FORTRAN, in production mo...
Quincey KoziolQuincey Koziol
ad2f3285b3a[svn-r19131] Description: Reduce compiler optimizations for v10.6, to work around bug with static constant char *'s.Tested on: Linux/32 2.4 (jam) w/PGI
Quincey KoziolQuincey Koziol
95330f3e60f[svn-r19130] Description: Correct another inadvertant use of macro instead of versioned API name.Tested on: Eyeballed only, too minor to require h5committest
Quincey KoziolQuincey Koziol
4ebdf9e2789[svn-r19127] Description: Change use of API wrapper to using versioned API routine (i.e. H5Eprint -> H5Eprint2)Tested on: None, eyeballed only, too simple
Quincey KoziolQuincey Koziol
1f685d5d53c[svn-r19124] Description: Add some error checking to the process of creating superblock extension.Tested on: FreeBSD/32 6.3 (duty) in debug mode FreeBSD/64 6.3 (liberty) 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 (amani) w/Intel compilers, w/default API=1.6.x, w/C++ & FORTRAN, in production mode Solaris/32 2.10 (...
Quincey KoziolQuincey Koziol
cba920a0368[svn-r19120] Description: Bump the testing timer value from 30 to 60 minutes.Tested on: None, just eyeballed, too simple to require test
Quincey KoziolQuincey Koziol
64ab5ef6b43[svn-r19118] Description: Fix return value from FAIL to NULL.Tested on: Eyeballed only (too trivial to test)
Allen ByrneAllen Byrne
3e87f758224[svn-r19116] Corrected positioning of cmake variables in definition order.
Quincey KoziolQuincey Koziol
e3537b7ee7e[svn-r19114] Description: Rename H5AC_set() to H5AC_insert_entry() Get rid of H5C_set_skip_flags() & related flagsTested on: Mac OS X/32 10.6.4 (amazon) w/debug, production & parallel (too simple to require h5committest)
Allen ByrneAllen Byrne
4e3398b9d74[svn-r19108] Corrected cmake location of ConfigureChecks.cmake
Allen ByrneAllen Byrne
c00ba4b1229[svn-r19107] Move Resources folder to config/cmakeTested: Local Linux
Quincey KoziolQuincey Koziol
a67794b1bc3[svn-r19099] Description: Fix const pointer issues for projection construction routine and also bump time before alarm kicks in to terminate a test from 20 minutes to 30 minutes, to give the PGI compiler tests w/debugging enabled a chance to finish.Tested on: Mac OS X/32 10.6.4 (amazon) w/debug Linux/32 2.6.18 (jam) w/PGI & debug
Quincey KoziolQuincey Koziol
5a1cb3c7a6e[svn-r19096] Description: Bring "round robin" metadata write strategy code from 'round_robin' branch to the trunk.Tested on: FreeBSD/32 6.3 (duty) in debug mode FreeBSD/64 6.3 (liberty) 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 (amani) w/Intel compilers, w/default API=1.6.x, w/C++ & FORTRAN, in production mode Solaris/32 2.10 (...
Quincey KoziolQuincey Koziol
f82774c0d5a[svn-r19092] Description: Bring "shape same" changes from LBL branch to trunk. These changes allow shapes that are the same, but projected into dataspaces with different ranks to be detected correctly, and also contains code to project a dataspace into greater/lesser number of dimensions, so the I/O can proceed in a faster way. These changes also contain several bug fixes and _lots_ of code cleanups to the MPI datatype creation code. Many other misc. code cleanup are included as well... Tested on: FreeBSD/32 6.3 (duty) in debug mode FreeBSD/64 6.3 (liberty) 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, ...
Private HDFPrivate HDF
075f618e23f[svn-r19086] Snapshot version 1.9 release 74
Neil FortnerNeil Fortner
9a8c8887ab0[svn-r19083] Add gen_sizes_lheap to CMakeLists.txt.Tested: none
Neil FortnerNeil Fortner
c22b8a94f2b[svn-r19076] Purpose: Fix bug 1951Description: A bug introduced in 1.8.5 causes local heap data blocks to be mis-aligned when sizeof_offsets + 2*sizeof_lengths is not a multiple of 8. In this case, the address of the data block as stored in the heap prefix is aligned but the actual data block is not. This causes files created with these sizes to be corrupted, and prevents uncorrupted files with these sizes to be unreadable. ...
Allen ByrneAllen Byrne
0dce71a0a30[svn-r19074] Added check for no encoding to determine result for testTested: Windows
Albert ChengAlbert Cheng
2e929c51a5a[svn-r19072] Bug 1921: change to use mpiexec.Changed the mpirun to mpiexec in the comment line. Tested: jam (pp). No h5committest since this applied in parallel only.
Albert ChengAlbert Cheng
aab23acc056[svn-r19070] Document update: ID 1921 change mpirun to mpiexecChanged the use of mpirun to mpiexec which is the MPI-2 official standard. INSTALL_parallel: Also bring in previous update of Red Storm support.MPI-2
Albert ChengAlbert Cheng
eea98ac8cb4[svn-r19068] Bug fix: ID 1921 change mpirun to mpiexecRemoved the recognition of parallel compilers of LAM (hcc) and ChMPIon (cmpicc) since we have no access to these two MPI implementations and decided not to support them any more. Test: Jam using parallel tests: 1. use CC=mpicc and confirmed it is recognized as a parallel compiler; 2. use CC=hcc and confirmed it is NOT recognized as a parallel compiler any more.