diff options
author | Raymond Lu <songyulu@hdfgroup.org> | 2007-04-05 20:25:50 (GMT) |
---|---|---|
committer | Raymond Lu <songyulu@hdfgroup.org> | 2007-04-05 20:25:50 (GMT) |
commit | 31ca50ac3aa47cd19a84a38631f6ec81db3caf5d (patch) | |
tree | 98b90d5c3d52fb4e14e8fbcb653efc2312c5ad3e | |
parent | 6f7ab83c3cdd0c53075080e5635f72dce5502e4d (diff) | |
download | hdf5-31ca50ac3aa47cd19a84a38631f6ec81db3caf5d.zip hdf5-31ca50ac3aa47cd19a84a38631f6ec81db3caf5d.tar.gz hdf5-31ca50ac3aa47cd19a84a38631f6ec81db3caf5d.tar.bz2 |
[svn-r13595] Add the macro check of H5_HAVE_FSEEKO for STDIO test. Without it
there'll be no big file support.
Tested on smirom because it's a simple change.
-rw-r--r-- | test/big.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -555,7 +555,7 @@ main (int ac, char **av) if (h5_cleanup(FILENAME, fapl)) remove(DNAME); puts("Test passed with the Family Driver."); - +#ifdef H5_HAVE_FSEEKO /* Test big file with the STDIO driver */ puts("\nTesting big file with the STDIO Driver "); @@ -568,6 +568,7 @@ main (int ac, char **av) if (writer(filename, fapl, WRT_N)) goto error; if (reader(filename, fapl)) goto error; puts("Test passed with the STDIO Driver."); +#endif quit: /* End with normal exit code */ |