connect.sh revision 1.1
1tid="simple connect"
2
3for p in 1 2; do
4	ssh -o "Protocol=$p" -F $OBJ/ssh_config somehost true
5	if [ $? -ne 0 ]; then
6		fail "ssh connect with protocol $p failed"
7	fi
8done
9