diff options
author | Albert Cheng <acheng@hdfgroup.org> | 1999-07-20 22:09:49 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 1999-07-20 22:09:49 (GMT) |
commit | 946083cb9b1d482c790f486a922a2ba8fa66e3fc (patch) | |
tree | a0d6670b0a7076649c907c49fe62c5e5ed6d3278 /tools | |
parent | 072143ba88da8184334e1cd89f0876de01e69ce2 (diff) | |
download | hdf5-946083cb9b1d482c790f486a922a2ba8fa66e3fc.zip hdf5-946083cb9b1d482c790f486a922a2ba8fa66e3fc.tar.gz hdf5-946083cb9b1d482c790f486a922a2ba8fa66e3fc.tar.bz2 |
[svn-r1521] Forgot to change the arguments for the $diff command when I changed
them for $cmp the last time. Updated it. now it works for --srcdir
option too.
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/testh5dump.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/testh5dump.sh b/tools/testh5dump.sh index 0705107..dcb1922 100755 --- a/tools/testh5dump.sh +++ b/tools/testh5dump.sh @@ -49,9 +49,9 @@ DUMP() echo " PASSED" else echo "*FAILED*" - echo " Actual result (*.out) differs from expected result (*.ddl)" + echo " Expected result (*.ddl) differs from actual result (*.out)" nerrors="`expr $nerrors + 1`" - test yes = "$verbose" && $diff $srcdir/$expect $actual |sed 's/^/ /' + test yes = "$verbose" && $diff $expect $actual |sed 's/^/ /' fi # Clean up output file |