summaryrefslogtreecommitdiff
path: root/regress/localcommand.sh
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2008-03-12 23:58:05 +1100
committerDamien Miller <djm@mindrot.org>2008-03-12 23:58:05 +1100
commita5e584274dfa631def56403a0b92bf354067ca5a (patch)
tree6d00825a7276eb33970e3f991481453504b8f42e /regress/localcommand.sh
parent1e42689ad5a2e78b24369a56e01fc777611da745 (diff)
downloadopenssh-git-a5e584274dfa631def56403a0b92bf354067ca5a.tar.gz
- dtucker@cvs.openbsd.org 2007/10/29 06:57:13
[regress/Makefile regress/localcommand.sh] Add simple regress test for LocalCommand; ok djm@
Diffstat (limited to 'regress/localcommand.sh')
-rw-r--r--regress/localcommand.sh15
1 files changed, 15 insertions, 0 deletions
diff --git a/regress/localcommand.sh b/regress/localcommand.sh
new file mode 100644
index 00000000..a23e5c67
--- /dev/null
+++ b/regress/localcommand.sh
@@ -0,0 +1,15 @@
+# $OpenBSD: localcommand.sh,v 1.1 2007/10/29 06:57:13 dtucker Exp $
+# Placed in the Public Domain.
+
+tid="localcommand"
+
+echo 'PermitLocalCommand yes' >> $OBJ/ssh_proxy
+echo 'LocalCommand echo foo' >> $OBJ/ssh_proxy
+
+for p in 1 2; do
+ verbose "test $tid: proto $p localcommand"
+ a=$(${SSH} -F $OBJ/ssh_proxy -$p somehost true)
+ if [ "$a" != "foo" ] ; then
+ fail "$tid proto $p"
+ fi
+done