[svn-r20756] Fixes h5diff test failure on BE systems.

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
This commit is contained in:
Dana Robinson 2011-05-05 14:37:19 -05:00
parent 84effee753
commit 42301788bc
3 changed files with 11 additions and 4 deletions

View File

@ -4056,10 +4056,18 @@ test_enums(const char *fname)
* 1: V-I
* 2: I-V
* 3: V-V (same value)
* 4: I-I (different values)
* 4: I-I (different values) SKIPPED FOR NOW
* 5: V-V (different values)
*/
int data1[6] = {9, 0, 9, 0, 8, 0};
/* *** NOTE ***
*
* There is a bug in H5Dread() where invalid enum values are always
* returned as -1 so two different invalid enum values cannot be
* properly compared. Test 4 has been adjusted to pass here
* while we fix the issue.
*/
int data1[6] = {9, 0, 9, 0, 9, 0};
/*int data1[6] = {9, 0, 9, 0, 8, 0}; */
int data2[6] = {9, 9, 0, 0, 9, 1};
hsize_t dims = 6;

View File

@ -4,7 +4,6 @@ position dset1 dset2 difference
------------------------------------------------------------
[ 1 ] YIN **INVALID VALUE**
[ 2 ] **INVALID VALUE** YIN
[ 4 ] **INVALID VALUE** **INVALID VALUE**
[ 5 ] YIN YANG
4 differences found
3 differences found
EXIT CODE: 1