diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2007-06-15 19:11:59 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2007-06-15 19:11:59 (GMT) |
commit | d0a9cf9ffaf0d62d8e793f4a89189a7a01eda7f5 (patch) | |
tree | 288c1956e2d23398652b07b76e3fb3c081b09888 /test/fillval.c | |
parent | 40160d4d740ff706520b396fd9367089e8e4e2a2 (diff) | |
download | hdf5-d0a9cf9ffaf0d62d8e793f4a89189a7a01eda7f5.zip hdf5-d0a9cf9ffaf0d62d8e793f4a89189a7a01eda7f5.tar.gz hdf5-d0a9cf9ffaf0d62d8e793f4a89189a7a01eda7f5.tar.bz2 |
[svn-r13871] Description:
Fix problems with 'check-vfd' target, that were [mostly] introduced with
the recent "unique, but sharable" ISOHM optimization.
The problems were mostly with using the 'core' VFD, so the
H5Pset_fapl_core() API call was changed to re-open existing files (therefore
operating more list the sec2, stdio, etc. VFDs). This allows many more of
the tests to run using the 'core' VFD, so those were enabled also.
Tested on:
Linux/64 2.6 (chicago2) w/check-vfd
Diffstat (limited to 'test/fillval.c')
-rw-r--r-- | test/fillval.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/fillval.c b/test/fillval.c index 092a3d7..1518a1c 100644 --- a/test/fillval.c +++ b/test/fillval.c @@ -1516,7 +1516,7 @@ main(int argc, char *argv[]) envval = HDgetenv("HDF5_DRIVER"); if(envval == NULL) envval = "nomatch"; - if(HDstrcmp(envval, "core") && HDstrcmp(envval, "split") && HDstrcmp(envval, "multi") && HDstrcmp(envval, "family")) { + if(HDstrcmp(envval, "split") && HDstrcmp(envval, "multi") && HDstrcmp(envval, "family")) { int nerrors=0, argno, test_contig=1, test_chunk=1, test_compact=1; hid_t fapl = (-1), fapl2 = (-1); /* File access property lists */ hbool_t new_format; /* Whether to use the new format or not */ |