diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2007-07-20 17:05:00 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2007-07-20 17:05:00 (GMT) |
commit | 69c572e26a72923a55aab4c954487b65976b23a2 (patch) | |
tree | ee5a04526870e1020e442d0c121aed2a693c801d /test | |
parent | 0bbdb70ed7ef9173cce7492bc0c7679367e71d44 (diff) | |
download | hdf5-69c572e26a72923a55aab4c954487b65976b23a2.zip hdf5-69c572e26a72923a55aab4c954487b65976b23a2.tar.gz hdf5-69c572e26a72923a55aab4c954487b65976b23a2.tar.bz2 |
[svn-r13990] Description:
Allow a ".h5" suffix to be added to core files also, which prevents
overwriting the test binary (and confusing the tests on copper, etc.)
Tested on:
AIX 5.3 (copper) w/check-vfd
FreeBSD/32 6.2 (duty)
FreeBSD/64 6.2 (liberty)
Diffstat (limited to 'test')
-rw-r--r-- | test/h5test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/h5test.c b/test/h5test.c index c2e9859..375f71c 100644 --- a/test/h5test.c +++ b/test/h5test.c @@ -287,7 +287,7 @@ h5_fixname(const char *base_name, hid_t fapl, char *fullname, size_t size) if (H5FD_FAMILY == driver) suffix = "%05d.h5"; - else if (H5FD_CORE == driver || H5FD_MULTI == driver) + else if (H5FD_MULTI == driver) suffix = NULL; } |