Commit Graph

1303 Commits

Author SHA1 Message Date
Allen Byrne
e0b060b430 [svn-r22106] Update linux VM version info 2012-03-21 10:59:42 -05:00
Allen Byrne
1910652b96 [svn-r22104] Added cross platform example text for new h5dump file option 2012-03-21 09:40:05 -05:00
HDF Tester
b1a2c642a7 [svn-r22086] Snapshot version 1.8 release 9 (snap13) 2012-03-18 19:31:55 -05:00
Raymond Lu
20ae9239c8 [svn-r22083] I updated the item for Issue 7756.
No test is needed.
2012-03-16 11:09:58 -05:00
Neil Fortner
4afb95df4f [svn-r22073] Port r22072 to 1.8 branch
Purpose: Fix rare corruption bug (HDFFV-7879)

Description:
When using the new object header format, it was possible for corruption to occur
if the first object header chunk changed size such that the lenght of the "chunk
0 size" field changed.  This only occurred if there were messages that had not
been decoded.  The original algorithm that changed the object header chunk size
marked all messages as dirty, causing those that had not been decoded to have
both the raw and native form invalidated.  Changed the algorithm to avoid
marking messages dirty and added assertions to catch the case where messages
are dirtied without being decoded (or recently created) first.

Tested: jam, koala, ostrich (h5committest), durandal
2012-03-15 14:23:55 -05:00
Jonathan Kim
493e1e8f80 [svn-r22057] Purpose:
Fix for HDFFV-7835 h5diff: incorrect result for comparing the two same type symlinks as dangling links.

Description:
  When two symbolic dangling links are compared with --follow-symlinks option,
  the result should be same. It works for comparing two files, but didn't work
  for comparing two objects. 
  Test cases were added and tagged with jira#.
  Merged from HDF5 trunk r22038.

Tested:
  jam (linux32-LE), koala (linux64-LE), ostrich (linuxppc64-BE), tejeda (mac32-LE), linew (solaris-BE),  Windows (32-LE cmake), Cmake (jam)
2012-03-12 17:49:17 -05:00
Quincey Koziol
37156e3914 [svn-r22055] Description:
Bring r22053 from trunk to 1.8 branch:

    Correct corner case for creating a contiguous dataset with a zero-sized
dataspace, when the allocation time is set to early.

    Also clean up a few compiler warnings in the dataspace code.

Tested on:
    Mac OSX/64 10.7.3 (amazon) w/debug & parallel
2012-03-12 16:54:00 -05:00
Allen Byrne
1adc7aef23 [svn-r22048] Add h5dump issues fixed 2012-03-12 15:36:25 -05:00
HDF Tester
e6efdf9620 [svn-r22041] Snapshot version 1.8 release 9 (snap12) 2012-03-11 20:22:12 -05:00
Jonathan Kim
185cc9746b [svn-r22031] Purpose:
Task for HDFFV-7862 - Select data by chunk direction to improve performance in h5repack

Description:
  h5repack sometimes became very slow when handling big chunked datasets in
  certain cases. (when chunk boundary doesn't match with a hyperslab boundary.)
  The main issue was from figuring out a hypeslab without considering chunk
  boundary to read from and write to such datasets.
  The update was made to figure out a better hyperslab unit with considering
  chunk boundary to improve performance for such cases prior to the update.


Tested:
  jam (linux32-LE), koala (linux64-LE), ostrich (linuxppc64-BE), tejeda (mac32-LE), linew (solaris-BE), Windows
2012-03-06 10:41:55 -05:00
HDF Tester
7619eb4b18 [svn-r22023] Snapshot version 1.8 release 9 (snap11) 2012-03-04 19:27:29 -05:00
Allen Byrne
b16a1bf71c [svn-r22014] Add USER_BLOCK change and highlight whitespace changes for h5dump refactoring 2012-03-02 09:39:58 -05:00
Allen Byrne
68d93b7f4e [svn-r22013] HDFFV-7560:
Merge 1.8 and h5dump/tools and tests based on tools library from trunk.
Reduced warnings.

HDFFV-7949:
Remove duplicated functions in h5ls

Tested: local linux,h5committest
2012-03-02 09:21:13 -05:00
Albert Cheng
c714d9ef43 [svn-r22000] Updated for the changes made to IBM configure.
Also update the IBM tested platform information.
2012-02-28 07:46:19 -05:00
HDF Tester
a263f6cfdb [svn-r21961] Snapshot version 1.8 release 9 (snap10) 2012-02-19 19:22:11 -05:00
Dana Robinson
7d8acc2824 [svn-r21927] Updated RELEASE.txt with HDFFV-7780 information. 2012-02-10 16:51:40 -05:00
Raymond Lu
dda14b5a1c [svn-r21914] Issue 7829 - data conversion from "long double" to integers failed on Ubuntu with optimization. I documented it as
a known solution and provided users a way to lower down the optimization.

No test.
2012-02-07 16:43:38 -05:00
Raymond Lu
a7c969372e [svn-r21912] Issue 7756 - Creating a dataset in a read-only file caused seg fault when the file is closed. I fixed the problem by putting a condition check early in H5O_create of H5O.c. The old code checked it too late, not until a file space is created. I added a test case in tfile.c to check the creation of group, dataset, attribute, and datatype.
Tested on jam - I've tested the same changes in the trunk with h5committest.
2012-02-07 10:49:44 -05:00
HDF Tester
4596ad79a9 [svn-r21911] Snapshot version 1.8 release 9 (snap9) 2012-02-05 19:54:51 -05:00
HDF Tester
f59e450d9c [svn-r21899] Snapshot version 1.8 release 9 (snap8) 2012-01-29 19:26:11 -05:00
Jonathan Kim
2558bfc562 [svn-r21892] Purpose:
Fix for HDFFV-7836 h5diff: displays error stack message for comparing the two dangling symlink with follow-symlinks option

Description:
  While ago, to improve performance, skipping same object checking 
  (h5tools_is_obj_same()) was added. 
  However the checking function doesn't understand about the dangling link and
  caused the issue. 
  Since handling dangling link code section already implemented, move the 
  checking function after handling dangling-links to address the problem.
  Test was added and tagged with jira#.

Tested:
  jam (linux32-LE), koala (linux64-LE), ostrich (linuxppc64-BE), tejeda (mac32-LE), linew (solaris-BE),  Windows (32-LE cmake), Cmake (jam)
2012-01-25 16:12:15 -05:00
HDF Tester
8f2a6ff7f7 [svn-r21885] Snapshot version 1.8 release 9 (snap7) 2012-01-22 19:27:06 -05:00
HDF Tester
3457f23dde [svn-r21877] Snapshot version 1.8 release 9 (snap6) 2012-01-15 19:26:17 -05:00
Jonathan Kim
5540ecb72d [svn-r21870] Purpose:
Fix for HDFFV-7840 h5repack: memory leak over one of the h5diff test file

Description:
  Turned out that there were two causes of memory leaks.
  1. for handling variable length string in attribute. 
  2. for handling compound type with non-reference members.  
  The first issue is fixed in copy_attr() which is updated to use h5tools_detect_vlen to take care of vlen string as well as vlen data. 
  The second is fixed in copy_refs_attr() of compound handling code.
  Merged from HDF5 trunk r21869.
  
Tested:
 jam (linux32-LE), koala (linux64-LE), heiwa (linuxppc64-BE), tejeda (mac32-LE), linew (solaris-BE),  Windows (32-LE cmake), Cmake (jam)
2012-01-10 11:23:38 -05:00
HDF Tester
da199c11f4 [svn-r21868] Snapshot version 1.8 release 9 (snap5) 2012-01-08 19:26:38 -05:00
Jonathan Kim
26c62123eb [svn-r21866] Purpose:
Fix for HDFFV-7838 h5ls: segfault for handling region reference in attribute with -v option

Description:
  Segfault occurred when h5ls access region reference data in an attribute. 
  This didn't occurred when -v option was used. 
  The cause was "h5tool_format_t info;" struct variable members were accessed
  without proper values were assigned (was NULL), so printf failed later in the code.
  Merged from HDF5 trunk r21865.
  
Tested:
 jam (linux32-LE), koala (linux64-LE), heiwa (linuxppc64-BE), tejeda (mac32-LE), , cmake-Windows (32-LE)
2012-01-06 11:17:22 -05:00
HDF Tester
2f06600bbb [svn-r21858] Snapshot version 1.8 release 9 (snap4) 2012-01-01 19:25:16 -05:00
HDF Tester
ddf59dd30f [svn-r21851] Snapshot version 1.8 release 9 (snap3) 2011-12-25 19:31:44 -05:00
HDF Tester
fefcc80c7e [svn-r21832] Snapshot version 1.8 release 9 (snap2) 2011-12-18 19:27:11 -05:00
Allen Byrne
439d540897 [svn-r21806] HDFFV-7854 - Updated all CMakeLists.txt minimum version to be 2.8.6. 2011-12-05 11:36:06 -05:00
HDF Tester
e98218b62c [svn-r21800] Snapshot version 1.8 release 9 (snap1) 2011-12-04 19:19:54 -05:00
Neil Fortner
33830b7221 [svn-r21794] Add RELEASE.txt note for r21791 2011-12-01 13:57:07 -05:00
HDF Tester
77fcd58604 [svn-r21776] Snapshot version 1.8 release 9 (snap0) 2011-11-27 19:29:01 -05:00
Allen Byrne
0213b3b435 [svn-r21766] Update Linux VM section to match 1.8.8 2011-11-16 10:27:30 -05:00
Raymond Lu
db7410f838 [svn-r21765] Issue 7618 - the library had seg fault when it tried to shrink the size of compound data type through H5Tset_size immediately after the type was created. I fixed it in this commit. I'm bringing the fix from the trunk. The only files being change are test/dtypes.c, src/H5T.c, src/H5Tconv.c, and release_docs/RELEASE.txt. All others are property changes.
Tested on jam, koala, and linew.
2011-11-15 17:45:06 -05:00
Raymond Lu
92e5075da8 [svn-r21718] Issue 7618 - the library had seg fault when it tried to shrink the size of compound data type through H5Tset_size immedia
tely after the type was created.  I'm bringing the fix from the trunk that I committed a while ago. My real changes are in test/dtypes.c, src/H5T.c, and release_docs/RELEASE.txt.  All other changes are property changes.

Tested on jam.  But I tested the same fix in the trunk on jam, koala, and linew.
2011-11-04 17:58:49 -05:00
Mike McGreevy
ddac2349c0 [svn-r21639] - Clear out RELEASE.txt in preparation for 1.8.9 release changes.
- Update version references in RELEASE.txt
- Add reminder to HISTORY-1_8.txt that it needs the completed
  RELEASE.txt from the 1.8.8 branch when it's done.
2011-10-21 11:07:25 -05:00
Mike McGreevy
e52623c9fe [svn-r21638] Update 1.8 branch version to 1.8.9-snap0 2011-10-21 10:55:40 -05:00
Quincey Koziol
13bc2e73cf [svn-r21618] Description:
Bring r21617 from trunk to 1.8 branch:

    Recalculate the size of destination attribute message when the source and
destination versions are different during an object copy operation.
(Jira: HDFF-7718)

Tested on: 
    Mac OS X/32 10.7.2 (amazon) w/debug
    (h5committested on trunk)
2011-10-20 12:13:11 -05:00
Scot Breitenfeld
d91a3fda2a [svn-r21616] Updates to Fortran 2003 constants. 2011-10-19 22:07:37 -05:00
Scot Breitenfeld
216cbdcd70 [svn-r21614] Added new fortran, HL, fortran HL changes. 2011-10-19 21:07:43 -05:00
Raymond Lu
c7342f6262 [svn-r21612] I put an item about the H5LTdtype_to_text bug (7701). 2011-10-19 16:13:07 -05:00
Mike McGreevy
0bab223bcc [svn-r21592] Purpose:
Minor cleanup of RELEASE.txt:
  - formatting
  - update platforms tested & known issues as of 1.8.7 release
    (i.e. changes made to 1_8_7's RELEASE.txt never merged to 1_8).
    (these will further be updated prior to 1.8.8 release).

Tested:
 - release doc only, none needed.
2011-10-17 11:51:10 -05:00
HDF Tester
c48b71ce91 [svn-r21588] Snapshot version 1.8 release 8 (snap18) 2011-10-16 19:22:26 -05:00
Elena Pourmal
c43f28230d [svn-r21576] Maintenance: Added F2003 info 2011-10-14 15:09:17 -05:00
Dana Robinson
b92a7abb34 [svn-r21567] Updated RELEASE.txt 2011-10-14 13:29:39 -05:00
Quincey Koziol
fe32509673 [svn-r21566] Description:
Bring r21561 from trunk back to 1.8 branch:

    Correct error in loading local heap prefix & data block from the file.
Sometimes the local heap's prefix could be loaded before the data block (e.g.
using H5Oget_info), but then when the data block was loaded later, the free
list information would get lost, causing the heap's size to grow larger than
necessary.  This is Jira bug #HDFFV-7767

Tested on:
    Mac OS X/32 10.7.2 (amazon) w/debug
    (h5committest coming up)
2011-10-14 12:42:22 -05:00
Vailin Choi
3feb0d880d [svn-r21565] Update RELEASE.txt for the fix checked in yesterday for HDFFV-7640. 2011-10-14 11:24:51 -05:00
Neil Fortner
363988bd77 [svn-r21557] Port r21556 to 1.8 branch
Purpose: Fix bug in H5Ocopy

Description:
H5Ocopy could get confused when copying a named datatype containing an
attribute which used that named datatype as its datatype.  This happened
because H5Ocopy would recurse into the attribute's datatype before the object
the attribute was in was fully copied (i.e. before the "post-copy" pass).
Modified H5Ocopy to avoid recursing before the post-copy step in this case.
Required many changes, including to how non-committed shared messages are
copied.

Tested: jam, koala, heiwa (h5committest); durandal
2011-10-13 19:03:09 -05:00
Elena Pourmal
309f0b543b [svn-r21554] Maintenance: Added entry for the Fortran DS wrappers 2011-10-13 16:30:37 -05:00