diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2006-10-13 17:16:07 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2006-10-13 17:16:07 (GMT) |
commit | 2374bb1012dd1d1233a3d1f5b807460cece72b0f (patch) | |
tree | 1d27b218ef63de3c60d94e7cdb0caa6d73bd784b /test/fillval.c | |
parent | 7ff0e2eacdbd4fe003b0f1bf79ba3f446c2ee986 (diff) | |
download | hdf5-2374bb1012dd1d1233a3d1f5b807460cece72b0f.zip hdf5-2374bb1012dd1d1233a3d1f5b807460cece72b0f.tar.gz hdf5-2374bb1012dd1d1233a3d1f5b807460cece72b0f.tar.bz2 |
[svn-r12759] Description:
Fix errors with check-vfd and recent modifications to tests.
Tested on:
Linux/64 2.4 (mir) 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 2385585..3691e38 100644 --- a/test/fillval.c +++ b/test/fillval.c @@ -1414,7 +1414,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")) { + if(HDstrcmp(envval, "core") && 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 */ |