diff options
author | Raymond Lu <songyulu@hdfgroup.org> | 2007-04-06 19:59:00 (GMT) |
---|---|---|
committer | Raymond Lu <songyulu@hdfgroup.org> | 2007-04-06 19:59:00 (GMT) |
commit | 15de1c640768d43568a1f57c70e22bfa9b7b382c (patch) | |
tree | 45eb02b7b33d36486b093cefb459a252b30490b2 /test | |
parent | 2781e1e34d399ebcd12779ae1786ee48ceb5d8b0 (diff) | |
download | hdf5-15de1c640768d43568a1f57c70e22bfa9b7b382c.zip hdf5-15de1c640768d43568a1f57c70e22bfa9b7b382c.tar.gz hdf5-15de1c640768d43568a1f57c70e22bfa9b7b382c.tar.bz2 |
[svn-r13604] Add big file test for SEC2 driver.
Diffstat (limited to 'test')
-rw-r--r-- | test/big.c | 18 |
1 files changed, 18 insertions, 0 deletions
@@ -553,7 +553,25 @@ main (int ac, char **av) puts("Test passed with the Family Driver."); + /* Test big file with the SEC2 driver */ + puts("\nTesting big file with the SEC2 Driver "); + + fapl = h5_fileaccess(); + if(H5Pset_fapl_sec2(fapl)<0) + + HDmemset(filename, 0, sizeof(filename)); + h5_fixname(FILENAME[2], fapl, filename, sizeof filename); + + if (writer(filename, fapl, WRT_N)) goto error; + if (reader(filename, fapl)) goto error; + + puts("Test passed with the SEC2 Driver."); + + #ifdef H5_HAVE_FSEEKO + /* Clean up the test file */ + if (h5_cleanup(FILENAME, fapl)) remove(DNAME); + /* Test big file with the STDIO driver only if fseeko is supported, * because the OFFSET parameter of fseek has the type LONG, not big * enough to support big files. */ |