Commit 9d682a8d authored by Martin Pool's avatar Martin Pool

More debug output for testing SSH.

parent 37c3cf43
...@@ -10,12 +10,12 @@ ...@@ -10,12 +10,12 @@
. "$suitedir/rsync.fns" . "$suitedir/rsync.fns"
if ! type ssh >/dev/null 2>&1; then if ! type ssh >/dev/null ; then
echo "Skipping SSH tests because ssh is not in the path" echo "Skipping SSH tests because ssh is not in the path"
exit 77 exit 77
fi fi
if ! [ "`ssh -o'BatchMode yes' localhost echo yes 2>/dev/null`" = "yes" ]; then if ! [ "`ssh -o'BatchMode yes' localhost echo yes`" = "yes" ]; then
echo "Skipping SSH tests because ssh conection to localhost not authorised" echo "Skipping SSH tests because ssh conection to localhost not authorised"
exit 77 exit 77
fi fi
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment