summaryrefslogtreecommitdiffstats
path: root/fortran/test/tH5P.F90
diff options
context:
space:
mode:
authorDana Robinson <derobins@hdfgroup.org>2019-01-11 01:43:17 (GMT)
committerDana Robinson <derobins@hdfgroup.org>2019-01-11 01:43:17 (GMT)
commit8522539a9eed42e7d6d380a8a54bdcfe31ec9b2a (patch)
tree0235bbc01424a1abd972cf605c48aecf898dafd7 /fortran/test/tH5P.F90
parenta7e0ef996a63b87cc0295b58f37f037c848a6929 (diff)
downloadhdf5-8522539a9eed42e7d6d380a8a54bdcfe31ec9b2a.zip
hdf5-8522539a9eed42e7d6d380a8a54bdcfe31ec9b2a.tar.gz
hdf5-8522539a9eed42e7d6d380a8a54bdcfe31ec9b2a.tar.bz2
Fix for Fortran failures.
Diffstat (limited to 'fortran/test/tH5P.F90')
-rw-r--r--fortran/test/tH5P.F908
1 files changed, 4 insertions, 4 deletions
diff --git a/fortran/test/tH5P.F90 b/fortran/test/tH5P.F90
index ed35b63..c42dd7e 100644
--- a/fortran/test/tH5P.F90
+++ b/fortran/test/tH5P.F90
@@ -657,7 +657,7 @@ SUBROUTINE test_chunk_cache(cleanup, total_error)
minimize = .TRUE.
CALL h5pget_dset_no_attrs_hint_f(dcpl, minimize, error)
CALL check("h5pget_dset_no_attrs_hint_f",error,total_error)
- if(error .eq. 0 .and. minimize .neqv. .FALSE.) then
+ if(minimize .neqv. .FALSE.) then
total_error = total_error + 1
write(*,*) "Default dataset minimize flag was incorrect (H5P)"
endif
@@ -671,7 +671,7 @@ SUBROUTINE test_chunk_cache(cleanup, total_error)
minimize = .FALSE.
CALL h5pget_dset_no_attrs_hint_f(dcpl, minimize, error)
CALL check("h5pget_dset_no_attrs_hint_f",error,total_error)
- if(error .eq. 0 .and. minimize .neqv. .TRUE.) then
+ if(minimize .neqv. .TRUE.) then
total_error = total_error + 1
write(*,*) "Unable to get correct dataset minimize flag (H5P)"
endif
@@ -681,7 +681,7 @@ SUBROUTINE test_chunk_cache(cleanup, total_error)
minimize = .TRUE.
CALL h5fget_dset_no_attrs_hint_f(fid, minimize, error)
CALL check("h5fget_dset_no_attrs_hint_f",error,total_error)
- if(error .eq. 0 .and. minimize .neqv. .FALSE.) then
+ if(minimize .neqv. .FALSE.) then
total_error = total_error + 1
write(*,*) "Default dataset minimize flag was incorrect (H5F)"
endif
@@ -695,7 +695,7 @@ SUBROUTINE test_chunk_cache(cleanup, total_error)
minimize = .FALSE.
CALL h5fget_dset_no_attrs_hint_f(fid, minimize, error)
CALL check("h5fget_dset_no_attrs_hint_f",error,total_error)
- if(error .eq. 0 .and. minimize .neqv. .TRUE.) then
+ if(minimize .neqv. .TRUE.) then
total_error = total_error + 1
write(*,*) "Unable to get correct dataset minimize flag (H5F)"
endif