[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
This commit is contained in:
Quincey Koziol 2005-09-12 12:33:55 -05:00
parent 384d57221c
commit f9fee72df9

View File

@ -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