diff options
author | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2005-01-29 20:22:54 (GMT) |
---|---|---|
committer | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2005-01-29 20:22:54 (GMT) |
commit | bfec21e5fd148c993af86581d29a58d3defc2dff (patch) | |
tree | 4fa586f769232dd9898efbd35b9a3f4e8a302b78 | |
parent | 8adc1e143c6c93d6450c2e310e483e19affc44c9 (diff) | |
download | hdf5-bfec21e5fd148c993af86581d29a58d3defc2dff.zip hdf5-bfec21e5fd148c993af86581d29a58d3defc2dff.tar.gz hdf5-bfec21e5fd148c993af86581d29a58d3defc2dff.tar.bz2 |
[svn-r9885] Purpose:
bug fix
Description:
calling h5diff from the h5repack test script running mpicc , the path of one of the files was not found
Solution:
inserted the full path in the script
Platforms tested:
linux (with mpicc and gcc)
Misc. update:
-rwxr-xr-x | tools/h5repack/h5repack.sh.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/h5repack/h5repack.sh.in b/tools/h5repack/h5repack.sh.in index a21d608..d1f00c1 100755 --- a/tools/h5repack/h5repack.sh.in +++ b/tools/h5repack/h5repack.sh.in @@ -93,7 +93,8 @@ TOOLTEST() TESTING $H5REPACK $@ infile=$srcdir/../testfiles/$1 - outfile=out.$1 + path=`pwd` + outfile=$path/out.$1 shift if [ "`uname -s`" = "TFLOPS O/S" ]; then $RUNSERIAL $H5REPACK_BIN -i $infile -o $outfile $@ |