Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Split tools into src and test - remove folders | Allen Byrne | 2016-10-27 | 1 | -0/+0 |
| | |||||
* | [svn-r22170] Removed extraneous svn executable properties from ↵ | Dana Robinson | 2012-03-28 | 1 | -0/+0 |
| | | | | non-executable files. | ||||
* | [svn-r20756] Fixes h5diff test failure on BE systems. | Dana Robinson | 2011-05-05 | 1 | -0/+0 |
| | | | | | | | | | | | | | | | H5Dread() produces different output for invalid enum type values on systems of different endiannes. On BE systems, it always emits -1. On LE systems, the invalid value is emitted. This difference caused the h5diff test to fail since it tests to see if different invalid enum values are reported as different (on BE systems they are not since -1 == -1). This fix removes the "invalid vs. different invalid" test while we fix the library bug. HDFFV-7527 will be reopened in JIRA until the full test passes. Tested on: jam, heiwa, linew | ||||
* | [svn-r20724] Purpose: Fix a bug in h5diff when enum values are compared that do | Dana Robinson | 2011-05-04 | 1 | -0/+0 |
not represent a valid enum value. Description: The h5diff code compares enum values by converting them to strings and then comparing them. When the enum value is out of range and can't be converted to an enum string representation, the comparison was skipped. The code now flags differences when one of the two enum values is out of range (two out of range values are compared in memory). A test has been added to the tools test script. This fixes JIRA HDFFV-7527 Tested on: jam, koala, heiwa (h5committest) |