Commit 55bdb416 authored by Martin Pool's avatar Martin Pool

Skip SSH tests if $rsync_enable_ssh_tests is not set

parent 7c06e407
...@@ -10,6 +10,12 @@ ...@@ -10,6 +10,12 @@
. "$suitedir/rsync.fns" . "$suitedir/rsync.fns"
if [ "x$rsync_enable_ssh_tests" != xyes ]
then
echo "Skipping SSH tests because $rsync_enable_ssh_tests is not set"
exit 77
fi
if ! type ssh >/dev/null ; 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
......
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