mirror of
https://github.com/PowerShell/openssh-portable.git
synced 2025-07-31 01:35:11 +02:00
- dtucker@cvs.openbsd.org 2007/10/29 06:57:13
[regress/Makefile regress/localcommand.sh] Add simple regress test for LocalCommand; ok djm@
This commit is contained in:
parent
1e42689ad5
commit
a5e584274d
@ -1,3 +1,9 @@
|
|||||||
|
20080311
|
||||||
|
- (djm) OpenBSD CVS Sync
|
||||||
|
- dtucker@cvs.openbsd.org 2007/10/29 06:57:13
|
||||||
|
[regress/Makefile regress/localcommand.sh]
|
||||||
|
Add simple regress test for LocalCommand; ok djm@
|
||||||
|
|
||||||
20080311
|
20080311
|
||||||
- (dtucker) [auth-pam.c monitor.c session.c sshd.c] Bug #926: Move
|
- (dtucker) [auth-pam.c monitor.c session.c sshd.c] Bug #926: Move
|
||||||
pam_open_session and pam_close_session into the privsep monitor, which
|
pam_open_session and pam_close_session into the privsep monitor, which
|
||||||
@ -3718,4 +3724,4 @@
|
|||||||
OpenServer 6 and add osr5bigcrypt support so when someone migrates
|
OpenServer 6 and add osr5bigcrypt support so when someone migrates
|
||||||
passwords between UnixWare and OpenServer they will still work. OK dtucker@
|
passwords between UnixWare and OpenServer they will still work. OK dtucker@
|
||||||
|
|
||||||
$Id: ChangeLog,v 1.4866 2008/03/11 12:01:44 dtucker Exp $
|
$Id: ChangeLog,v 1.4867 2008/03/12 12:58:05 djm Exp $
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
# $OpenBSD: Makefile,v 1.42 2006/07/19 13:34:52 dtucker Exp $
|
# $OpenBSD: Makefile,v 1.43 2007/10/29 06:57:13 dtucker Exp $
|
||||||
|
|
||||||
REGRESS_TARGETS= t1 t2 t3 t4 t5 t6 t7 t-exec
|
REGRESS_TARGETS= t1 t2 t3 t4 t5 t6 t7 t-exec
|
||||||
tests: $(REGRESS_TARGETS)
|
tests: $(REGRESS_TARGETS)
|
||||||
@ -42,6 +42,7 @@ LTESTS= connect \
|
|||||||
reexec \
|
reexec \
|
||||||
brokenkeys \
|
brokenkeys \
|
||||||
cfgmatch \
|
cfgmatch \
|
||||||
|
localcommand \
|
||||||
forcecommand
|
forcecommand
|
||||||
|
|
||||||
USER!= id -un
|
USER!= id -un
|
||||||
|
15
regress/localcommand.sh
Normal file
15
regress/localcommand.sh
Normal file
@ -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
|
Loading…
x
Reference in New Issue
Block a user