diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2000-10-10 04:35:39 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2000-10-10 04:35:39 (GMT) |
commit | 0c492a236d3e0d525a1c59bf82b48d938ae89fc4 (patch) | |
tree | cc59df7a01bb29e9fb9d71babc63a381c325bf51 /test | |
parent | a5a3f3c7369f54b2a2d5b6a5b910b6b8ecd64801 (diff) | |
download | hdf5-0c492a236d3e0d525a1c59bf82b48d938ae89fc4.zip hdf5-0c492a236d3e0d525a1c59bf82b48d938ae89fc4.tar.gz hdf5-0c492a236d3e0d525a1c59bf82b48d938ae89fc4.tar.bz2 |
[svn-r2650] Purpose:
Bug fix
Description:
The predefined HDF5_PARAPREFIX has a trailing slash. The parallel
testfile names end up with two adjacent slashes that made some system
unhappy.
Solution:
Removed the trailing slash.
Platforms tested:
Arabica (solaris 2.7).
Diffstat (limited to 'test')
-rw-r--r-- | test/h5test.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/h5test.c b/test/h5test.c index 0e4b785..98e4aec 100644 --- a/test/h5test.c +++ b/test/h5test.c @@ -46,9 +46,9 @@ #ifndef HDF5_PARAPREFIX #ifdef __PUMAGON__ /* For the PFS of TFLOPS */ -#define HDF5_PARAPREFIX "pfs:/pfs_grande/multi/tmp_1/" +#define HDF5_PARAPREFIX "pfs:/pfs_grande/multi/tmp_1" #else -#define HDF5_PARAPREFIX "/tmp/" +#define HDF5_PARAPREFIX "/tmp" #endif #endif char *paraprefix = NULL; /* for command line option para-prefix */ |