diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2009-10-06 22:36:07 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2009-10-06 22:36:07 (GMT) |
commit | ccffe74623a2ffe256800649c5e2f113ce82b36d (patch) | |
tree | 7c26369af7c78c40649a1fe319d9535503f7370f /tools/h5diff/testh5diff.sh | |
parent | 770b6a467bb94e09243a3af3b94ca29f17dadca5 (diff) | |
download | hdf5-ccffe74623a2ffe256800649c5e2f113ce82b36d.zip hdf5-ccffe74623a2ffe256800649c5e2f113ce82b36d.tar.gz hdf5-ccffe74623a2ffe256800649c5e2f113ce82b36d.tar.bz2 |
[svn-r17603] Bug fix:
The ph5diff tests printout incorrectly reporting they are running
h5diff when it actually is running ph5diff.
Fixed.
Tested: Jam (parallel), linew (serial)
No H5committest since it is a shell script and Jam tests both
serial and parallel h5diff for Linux while Linew tests Big
endian platform.
Diffstat (limited to 'tools/h5diff/testh5diff.sh')
-rwxr-xr-x | tools/h5diff/testh5diff.sh | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tools/h5diff/testh5diff.sh b/tools/h5diff/testh5diff.sh index b8e743d..005a736 100755 --- a/tools/h5diff/testh5diff.sh +++ b/tools/h5diff/testh5diff.sh @@ -79,8 +79,9 @@ test -d ./testfiles || mkdir ./testfiles # -h print help page while [ $# -gt 0 ]; do case "$1" in - -p) # run ph5diff tests - H5DIFF_BIN=`pwd`/ph5diff + -p) # reset the tool name and bin to run ph5diff tests + H5DIFF=ph5diff # The tool name + H5DIFF_BIN=`pwd`/$H5DIFF pmode=yes shift ;; |