- (dtucker) platform.c session.c] Move the USE_LIBIAF fragment into
[openssh-git.git] / regress / localcommand.sh
blobfeade7a9d4c33525f2d7140fc58fd23dfea4d289
1 # $OpenBSD: localcommand.sh,v 1.1 2007/10/29 06:57:13 dtucker Exp $
2 # Placed in the Public Domain.
4 tid="localcommand"
6 echo 'PermitLocalCommand yes' >> $OBJ/ssh_proxy
7 echo 'LocalCommand echo foo' >> $OBJ/ssh_proxy
9 for p in 1 2; do
10 verbose "test $tid: proto $p localcommand"
11 a=`${SSH} -F $OBJ/ssh_proxy -$p somehost true`
12 if [ "$a" != "foo" ] ; then
13 fail "$tid proto $p"
15 done