diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2004-01-02 05:05:23 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2004-01-02 05:05:23 (GMT) |
commit | a59c045de10854aa53d69e2f27b52254138ee7c1 (patch) | |
tree | 032de8277a5787258f404cabb2ec42db42f91610 | |
parent | 4da7b1ee9b462925818cf704c89a72fef5f55e4d (diff) | |
download | hdf5-a59c045de10854aa53d69e2f27b52254138ee7c1.zip hdf5-a59c045de10854aa53d69e2f27b52254138ee7c1.tar.gz hdf5-a59c045de10854aa53d69e2f27b52254138ee7c1.tar.bz2 |
[svn-r8011] Purpose:
Bug fix
Description:
Fix szip FORTRAN tests..
Solution:
Increase the chunk size to be bigger than the szip 'pixels per block'.
Also add in code that checks for a maximum number of errors and doesn't keep
reporting that thousands of errors have occurred.
Platforms tested:
Linux 2.4 (verbena) w/szip & FORTRAN
Not tested w/h5committest since this combination isn't covered by it.
-rw-r--r-- | fortran/test/tH5Z.f90 | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/fortran/test/tH5Z.f90 b/fortran/test/tH5Z.f90 index f5cc83e..7425f14 100644 --- a/fortran/test/tH5Z.f90 +++ b/fortran/test/tH5Z.f90 @@ -108,9 +108,9 @@ CHARACTER(LEN=80) :: fix_filename CHARACTER(LEN=4), PARAMETER :: dsetname = "dset" ! Dataset name INTEGER, PARAMETER :: N = 1024 - INTEGER, PARAMETER :: NN = 16 + INTEGER, PARAMETER :: NN = 64 INTEGER, PARAMETER :: M = 512 - INTEGER, PARAMETER :: MM = 8 + INTEGER, PARAMETER :: MM = 32 INTEGER(HID_T) :: file_id ! File identifier INTEGER(HID_T) :: dset_id ! Dataset identifier @@ -124,6 +124,7 @@ INTEGER, DIMENSION(N,M) :: dset_data, data_out ! Data buffers INTEGER :: error ! Error flag + INTEGER :: num_errors = 0 ! Number of data errors INTEGER :: i, j !general purpose integers INTEGER(HSIZE_T), DIMENSION(7) :: data_dims_b @@ -265,10 +266,18 @@ do j = 1, M IF (data_out(i,j) .NE. dset_data(i, j)) THEN write(*, *) "dataset test error occured" - write(*,*) "data read is not the same as the data writen" + write(*,*) "data read is not the same as the data written" + num_errors = num_errors + 1 + IF (num_errors .GE. 512) THEN + write(*, *) "maximum data errors reached" + goto 100 + END IF END IF end do end do +100 IF (num_errors .GT. 0) THEN + total_error=total_error + 1 + END IF ! ! End access to the dataset and release resources used by it. |