diff options
author | Dana Robinson <derobins@hdfgroup.org> | 2011-05-04 20:07:38 (GMT) |
---|---|---|
committer | Dana Robinson <derobins@hdfgroup.org> | 2011-05-04 20:07:38 (GMT) |
commit | fbba9db9559924c5fab5ad969884e86ca0cc1418 (patch) | |
tree | d48ee2a7907a23ec50415eb568cb863bdf3e0b37 /MANIFEST | |
parent | 2ee184118709356cfada5dd510d26148183b9259 (diff) | |
download | hdf5-fbba9db9559924c5fab5ad969884e86ca0cc1418.zip hdf5-fbba9db9559924c5fab5ad969884e86ca0cc1418.tar.gz hdf5-fbba9db9559924c5fab5ad969884e86ca0cc1418.tar.bz2 |
[svn-r20724] Purpose: Fix a bug in h5diff when enum values are compared that do
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)
Diffstat (limited to 'MANIFEST')
-rw-r--r-- | MANIFEST | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -1596,6 +1596,7 @@ ./tools/h5diff/testfiles/h5diff_26.txt ./tools/h5diff/testfiles/h5diff_27.txt ./tools/h5diff/testfiles/h5diff_28.txt +./tools/h5diff/testfiles/h5diff_30.txt ./tools/h5diff/testfiles/h5diff_50.txt ./tools/h5diff/testfiles/h5diff_51.txt ./tools/h5diff/testfiles/h5diff_52.txt @@ -1763,6 +1764,7 @@ ./tools/h5diff/testfiles/h5diff_comp_vl_strs.h5 ./tools/h5diff/testfiles/h5diff_dset_zero_dim_size1.h5 ./tools/h5diff/testfiles/h5diff_dset_zero_dim_size2.h5 +./tools/h5diff/testfiles/h5diff_enum_invalid_values.h5 #test files for h5repack ./tools/h5repack/testfiles/h5repack_fill.h5 |