summaryrefslogtreecommitdiffstats
path: root/test/h5test.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>1999-10-20 17:51:27 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>1999-10-20 17:51:27 (GMT)
commit361897d767420803bee8b96805567b224c84e4a2 (patch)
treef6e2104b66bd08a61fb6f6afaae4647980bf5047 /test/h5test.c
parente0cbe0c5c8bed8dc382fe5fd2a131e484b2b93f2 (diff)
downloadhdf5-361897d767420803bee8b96805567b224c84e4a2.zip
hdf5-361897d767420803bee8b96805567b224c84e4a2.tar.gz
hdf5-361897d767420803bee8b96805567b224c84e4a2.tar.bz2
[svn-r1786] Added stdio VFL driver to the list of VFL drivers the user can test.
Diffstat (limited to 'test/h5test.c')
-rw-r--r--test/h5test.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/h5test.c b/test/h5test.c
index 9af7ca7..84dbec3 100644
--- a/test/h5test.c
+++ b/test/h5test.c
@@ -284,6 +284,9 @@ h5_fileaccess(void)
if (!strcmp(name, "sec2")) {
/* Unix read() and write() system calls */
if (H5Pset_fapl_sec2(fapl)<0) return -1;
+ } else if (!strcmp(name, "stdio")) {
+ /* Standard C fread() and fwrite() system calls */
+ if (H5Pset_fapl_stdio(fapl)<0) return -1;
} else if (!strcmp(name, "core")) {
/* In-core temporary file with 1MB increment */
if (H5Pset_fapl_core(fapl, 1024*1024, FALSE)<0) return -1;