diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2005-09-12 17:33:55 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2005-09-12 17:33:55 (GMT) |
commit | f9fee72df920390e75b875e0fe2ed961c7ad3d61 (patch) | |
tree | 3284ecf12cf8ba3d4d322c54eaa14f0fb57f21f6 | |
parent | 384d57221c4722585770cc979beac6485c9f3600 (diff) | |
download | hdf5-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
-rw-r--r-- | fortran/test/tH5F.f90 | 2 |
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 |