From 0c492a236d3e0d525a1c59bf82b48d938ae89fc4 Mon Sep 17 00:00:00 2001 From: Albert Cheng Date: Mon, 9 Oct 2000 23:35:39 -0500 Subject: [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). --- test/h5test.c | 4 ++-- 1 file 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 */ -- cgit v0.12