summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlbert Cheng <acheng@hdfgroup.org>2001-09-11 04:55:19 (GMT)
committerAlbert Cheng <acheng@hdfgroup.org>2001-09-11 04:55:19 (GMT)
commit1ebf933310232f12e2c5e1e3a39efe3a3c6bcf15 (patch)
tree2f8f9bea871eee4e23a6be1ad02867439658b3ae
parentdbd148cb9466f2aacf93e26b47d80670dabdbd49 (diff)
downloadhdf5-1ebf933310232f12e2c5e1e3a39efe3a3c6bcf15.zip
hdf5-1ebf933310232f12e2c5e1e3a39efe3a3c6bcf15.tar.gz
hdf5-1ebf933310232f12e2c5e1e3a39efe3a3c6bcf15.tar.bz2
[svn-r4435] Purpose:
Bug fix. Description: The default file name used is /foo/test.out that usually is not legal. Changed it to /tmp/test.out. Platforms tested: eirene (parallel).
-rw-r--r--perform/mpi-perf.c2
-rw-r--r--perform/perf.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/perform/mpi-perf.c b/perform/mpi-perf.c
index bf7c5be..c21ca44 100644
--- a/perform/mpi-perf.c
+++ b/perform/mpi-perf.c
@@ -56,7 +56,7 @@ int opt_iter = 1;
int opt_stripe = -1;
int opt_correct = 0;
int amode = O_RDWR | O_CREAT;
-char opt_file[256] = "/foo/test.out\0";
+char opt_file[256] = "/tmp/test.out\0";
char opt_pvfstab[256] = "notset\0";
int opt_pvfstab_set = 0;
diff --git a/perform/perf.c b/perform/perf.c
index a4a0678..b029059 100644
--- a/perform/perf.c
+++ b/perform/perf.c
@@ -61,7 +61,7 @@ int opt_iter = 1;
int opt_stripe = -1;
int opt_correct = 0;
int amode = O_RDWR | O_CREAT;
-char opt_file[256] = "/foo/test.out\0";
+char opt_file[256] = "/tmp/test.out\0";
char opt_pvfstab[256] = "notset\0";
int opt_pvfstab_set = 0;