summaryrefslogtreecommitdiffstats
path: root/fortran
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2005-09-12 17:33:55 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2005-09-12 17:33:55 (GMT)
commitf9fee72df920390e75b875e0fe2ed961c7ad3d61 (patch)
tree3284ecf12cf8ba3d4d322c54eaa14f0fb57f21f6 /fortran
parent384d57221c4722585770cc979beac6485c9f3600 (diff)
downloadhdf5-f9fee72df920390e75b875e0fe2ed961c7ad3d61.zip
hdf5-f9fee72df920390e75b875e0fe2ed961c7ad3d61.tar.gz
hdf5-f9fee72df920390e75b875e0fe2ed961c7ad3d61.tar.bz2
[svn-r11392] Purpose:
Bug fix Description: Recent group code changes tweaked the size of the free space in the file for this test. Update to the latest correct value. Platforms tested: h5committested
Diffstat (limited to 'fortran')
-rw-r--r--fortran/test/tH5F.f902
1 files changed, 1 insertions, 1 deletions
diff --git a/fortran/test/tH5F.f90 b/fortran/test/tH5F.f90
index 46832bb..d356619 100644
--- a/fortran/test/tH5F.f90
+++ b/fortran/test/tH5F.f90
@@ -747,7 +747,7 @@
! Check the free space now
CALL h5fget_freespace_f(fid, free_space, error)
CALL check("h5fget_freespace_f",error,total_error)
- if(error .eq.0 .and. free_space .ne. 976) then
+ if(error .eq.0 .and. free_space .ne. 1208) then
total_error = total_error + 1
write(*,*) "Wrong amount of free space reported, ", free_space
endif