diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2015-10-16 19:58:44 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2015-10-16 19:58:44 (GMT) |
commit | b2f7a76bc65a720ef3c92978b95f6ef9aedc1915 (patch) | |
tree | 82dc4f44f7b7ae3fe63c0a76848a0b07c682085e | |
parent | da138d4e46f99dbcc212f69728661b2f72991573 (diff) | |
download | hdf5-b2f7a76bc65a720ef3c92978b95f6ef9aedc1915.zip hdf5-b2f7a76bc65a720ef3c92978b95f6ef9aedc1915.tar.gz hdf5-b2f7a76bc65a720ef3c92978b95f6ef9aedc1915.tar.bz2 |
[svn-r28109] Description:
Correct failure when using the family VFD, which requires that the '%'s be
parsed twice.
Tested on:
MacOSX/64 10.10.5 (amazon) w/serial & parallel (and make check-vfd)
(h5committest not required on this branch)
-rw-r--r-- | test/vds.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -37,7 +37,7 @@ const char *FILENAME[] = { "vds_virt_1", "vds_src_0", "vds_src_1", - "vds%_src", + "vds%%_src", NULL }; @@ -1156,7 +1156,7 @@ test_basic_io(unsigned config, hid_t fapl) char vfilename2[FILENAME_BUF_SIZE]; char srcfilenamepct[FILENAME_BUF_SIZE]; char srcfilenamepct_map[FILENAME_BUF_SIZE]; - const char *srcfilenamepct_map_orig = "vds%%_src"; + const char *srcfilenamepct_map_orig = "vds%%%%_src"; hid_t srcfile[4] = {-1, -1, -1, -1}; /* Files with source dsets */ hid_t vfile = -1; /* File with virtual dset */ hid_t vfile2 = -1; /* File with copied virtual dset */ @@ -6383,7 +6383,7 @@ test_printf(unsigned config, hid_t fapl) const char *printf_srcfilename_map_orig = "vds_src_%b"; char srcfilenamepct[FILENAME_BUF_SIZE]; char srcfilenamepct_map[FILENAME_BUF_SIZE]; - const char *srcfilenamepct_map_orig = "vds%%_src"; + const char *srcfilenamepct_map_orig = "vds%%%%_src"; hid_t srcfile[4] = {-1, -1, -1, -1}; /* Files with source dsets */ hid_t vfile = -1; /* File with virtual dset */ hid_t dcpl = -1; /* Dataset creation property list */ |