diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2008-10-09 03:52:46 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2008-10-09 03:52:46 (GMT) |
commit | 261bbe39aac2cf13e2cd539520c3329e1df6d452 (patch) | |
tree | 0fcbcd9c19ae366fe6ac7e0216f5f753fd46117e /testpar | |
parent | 37aaef8fe09017234e163bc78f617d0676ca2072 (diff) | |
download | hdf5-261bbe39aac2cf13e2cd539520c3329e1df6d452.zip hdf5-261bbe39aac2cf13e2cd539520c3329e1df6d452.tar.gz hdf5-261bbe39aac2cf13e2cd539520c3329e1df6d452.tar.bz2 |
[svn-r15826] Description:
Bring revision 15825 from trunk:
Fix various problems with a the core & sec2 VFDs.
Improve the h5_get_file_size() routine to handle files created with
VFDs that use multiple files.
Tested on:
FreeBSD/32 6.3 (duty)
Already tested on other machine, in trunk.
Diffstat (limited to 'testpar')
-rw-r--r-- | testpar/t_mdset.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/testpar/t_mdset.c b/testpar/t_mdset.c index da48378..c4b319a 100644 --- a/testpar/t_mdset.c +++ b/testpar/t_mdset.c @@ -456,7 +456,7 @@ void big_dataset(void) VRFY((ret >= 0), "H5Fclose succeeded"); /* Check that file of the correct size was created */ - file_size=h5_get_file_size(filename); + file_size = h5_get_file_size(filename, fapl); VRFY((file_size == 2147485696ULL), "File is correct size(~2GB)"); /* @@ -485,7 +485,7 @@ void big_dataset(void) VRFY((ret >= 0), "H5Fclose succeeded"); /* Check that file of the correct size was created */ - file_size=h5_get_file_size(filename); + file_size = h5_get_file_size(filename, fapl); VRFY((file_size == 4294969344ULL), "File is correct size(~4GB)"); /* @@ -514,7 +514,7 @@ void big_dataset(void) VRFY((ret >= 0), "H5Fclose succeeded"); /* Check that file of the correct size was created */ - file_size=h5_get_file_size(filename); + file_size = h5_get_file_size(filename, fapl); VRFY((file_size == 8589936640ULL), "File is correct size(~8GB)"); /* Close fapl */ |