summaryrefslogtreecommitdiffstats
path: root/test/mf.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2009-06-09 23:28:35 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2009-06-09 23:28:35 (GMT)
commitb2efaa9f70e76ae0b459977d97057ead5f0c340b (patch)
treeaf5638102770382e1157d062f6f5c8efab21a0bc /test/mf.c
parentab58cdcecd186a3993913fdfbf7c598c24248213 (diff)
downloadhdf5-b2efaa9f70e76ae0b459977d97057ead5f0c340b.zip
hdf5-b2efaa9f70e76ae0b459977d97057ead5f0c340b.tar.gz
hdf5-b2efaa9f70e76ae0b459977d97057ead5f0c340b.tar.bz2
[svn-r17022] Description:
Disable testing the 'temporary' space allocation code when using the family VFD, since the test causes too many files to be opened. Tested on: Linux/64 2.6 (smirom) w/check-vfd
Diffstat (limited to 'test/mf.c')
-rw-r--r--test/mf.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/test/mf.c b/test/mf.c
index 4510c4c..958db67 100644
--- a/test/mf.c
+++ b/test/mf.c
@@ -742,15 +742,11 @@ static unsigned
test_mf_tmp(const char *env_h5_drvr, hid_t fapl)
{
hid_t file = -1; /* File ID */
- hbool_t contig_addr_vfd; /* Whether VFD used has a contigous address space */
TESTING("'temporary' file space allocation");
- /* Skip test when using VFDs that has different address spaces for each
- * type of metadata allocation.
- */
- contig_addr_vfd = (hbool_t)(HDstrcmp(env_h5_drvr, "split") && HDstrcmp(env_h5_drvr, "multi"));
- if(contig_addr_vfd) {
+ /* Can't run this test with multi-file VFDs */
+ if(HDstrcmp(env_h5_drvr, "split") && HDstrcmp(env_h5_drvr, "multi") && HDstrcmp(env_h5_drvr, "family")) {
char filename[FILENAME_LEN]; /* Filename to use */
H5F_t *f = NULL; /* Internal file object pointer */
h5_stat_size_t file_size, new_file_size; /* file size */