diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2006-06-01 22:56:50 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2006-06-01 22:56:50 (GMT) |
commit | cca4e8351bd0901b6f65291e3f6ba8ba8304dd42 (patch) | |
tree | 60fb8e887eac12ac50c57d0b84e18613517d70e2 /test/h5test.h | |
parent | b599f6bee0d34d897b9db0c9e2e933a40a6c2730 (diff) | |
download | hdf5-cca4e8351bd0901b6f65291e3f6ba8ba8304dd42.zip hdf5-cca4e8351bd0901b6f65291e3f6ba8ba8304dd42.tar.gz hdf5-cca4e8351bd0901b6f65291e3f6ba8ba8304dd42.tar.bz2 |
[svn-r12395] Purpose:
Feature
Description:
Sometimes the parallel prefix is given in the form of nfs:/mnt/pfs which
if given to a non-MPIO VFD like the default H5Fcreate, it would fail.
Added a new routine h5_rmprefix which would return the non-prefix component
part of the file name which would be okay for the default H5Fcreate and
such.
Platforms tested:
Tested in heping parallel.
Diffstat (limited to 'test/h5test.h')
-rw-r--r-- | test/h5test.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/h5test.h b/test/h5test.h index c065c34..28b6109 100644 --- a/test/h5test.h +++ b/test/h5test.h @@ -1,3 +1,4 @@ + /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * Copyright by the Board of Trustees of the University of Illinois. * * All rights reserved. * @@ -126,6 +127,7 @@ H5TEST_DLL char *h5_fixname(const char *base_name, hid_t fapl, char *fullname, size_t size); H5TEST_DLL hid_t h5_fileaccess(void); H5TEST_DLL void h5_no_hwconv(void); +H5TEST_DLL char *h5_rmprefix(const char *filename); H5TEST_DLL void h5_reset(void); H5TEST_DLL void h5_show_hostname(void); H5TEST_DLL h5_stat_size_t h5_get_file_size(const char *filename); |