summaryrefslogtreecommitdiff
path: root/regress
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
parent1e42689ad5a2e78b24369a56e01fc777611da745 (diff)
- 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')
-rw-r--r--regress/Makefile3
-rw-r--r--regress/localcommand.sh15
2 files changed, 17 insertions, 1 deletions
diff --git a/regress/Makefile b/regress/Makefile
index 539956398..196020db8 100644
--- a/regress/Makefile
+++ b/regress/Makefile
@@ -1,4 +1,4 @@
1# $OpenBSD: Makefile,v 1.42 2006/07/19 13:34:52 dtucker Exp $ 1# $OpenBSD: Makefile,v 1.43 2007/10/29 06:57:13 dtucker Exp $
2 2
3REGRESS_TARGETS= t1 t2 t3 t4 t5 t6 t7 t-exec 3REGRESS_TARGETS= t1 t2 t3 t4 t5 t6 t7 t-exec
4tests: $(REGRESS_TARGETS) 4tests: $(REGRESS_TARGETS)
@@ -42,6 +42,7 @@ LTESTS= connect \
42 reexec \ 42 reexec \
43 brokenkeys \ 43 brokenkeys \
44 cfgmatch \ 44 cfgmatch \
45 localcommand \
45 forcecommand 46 forcecommand
46 47
47USER!= id -un 48USER!= id -un
diff --git a/regress/localcommand.sh b/regress/localcommand.sh
new file mode 100644
index 000000000..a23e5c678
--- /dev/null
+++ b/regress/localcommand.sh
@@ -0,0 +1,15 @@
1# $OpenBSD: localcommand.sh,v 1.1 2007/10/29 06:57:13 dtucker Exp $
2# Placed in the Public Domain.
3
4tid="localcommand"
5
6echo 'PermitLocalCommand yes' >> $OBJ/ssh_proxy
7echo 'LocalCommand echo foo' >> $OBJ/ssh_proxy
8
9for 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"
14 fi
15done