diff options
Diffstat (limited to 'regress')
-rw-r--r-- | regress/Makefile | 3 | ||||
-rw-r--r-- | regress/login-timeout.sh | 29 |
2 files changed, 31 insertions, 1 deletions
diff --git a/regress/Makefile b/regress/Makefile index 76e28d36d..cf65b3630 100644 --- a/regress/Makefile +++ b/regress/Makefile | |||
@@ -1,4 +1,4 @@ | |||
1 | # $OpenBSD: Makefile,v 1.26 2003/10/11 11:49:49 dtucker Exp $ | 1 | # $OpenBSD: Makefile,v 1.27 2004/02/17 08:23:20 dtucker Exp $ |
2 | 2 | ||
3 | REGRESS_TARGETS= t1 t2 t3 t4 t5 t6 t7 t-exec | 3 | REGRESS_TARGETS= t1 t2 t3 t4 t5 t6 t7 t-exec |
4 | tests: $(REGRESS_TARGETS) | 4 | tests: $(REGRESS_TARGETS) |
@@ -21,6 +21,7 @@ LTESTS= connect \ | |||
21 | broken-pipe \ | 21 | broken-pipe \ |
22 | try-ciphers \ | 22 | try-ciphers \ |
23 | yes-head \ | 23 | yes-head \ |
24 | login-timeout \ | ||
24 | agent \ | 25 | agent \ |
25 | agent-getpeereid \ | 26 | agent-getpeereid \ |
26 | agent-timeout \ | 27 | agent-timeout \ |
diff --git a/regress/login-timeout.sh b/regress/login-timeout.sh new file mode 100644 index 000000000..4ba14b3ff --- /dev/null +++ b/regress/login-timeout.sh | |||
@@ -0,0 +1,29 @@ | |||
1 | # $OpenBSD: login-timeout.sh,v 1.1 2004/02/17 08:23:20 dtucker Exp $ | ||
2 | # Placed in the Public Domain. | ||
3 | |||
4 | tid="connect after login grace timeout" | ||
5 | |||
6 | trace "test login grace with privsep" | ||
7 | echo "LoginGraceTime 10s" >> $OBJ/sshd_config | ||
8 | echo "MaxStartups 1" >> $OBJ/sshd_config | ||
9 | start_sshd | ||
10 | |||
11 | (echo SSH-2.0-fake; sleep 60) | telnet localhost ${PORT} >/dev/null 2>&1 & | ||
12 | sleep 15 | ||
13 | ${SSH} -F $OBJ/ssh_config somehost true | ||
14 | if [ $? -ne 0 ]; then | ||
15 | fail "ssh connect after login grace timeout failed with privsep" | ||
16 | fi | ||
17 | |||
18 | kill `cat $PIDFILE` | ||
19 | |||
20 | trace "test login grace without privsep" | ||
21 | echo "UsePrivilegeSeparation no" >>sshd_config | ||
22 | start_sshd | ||
23 | |||
24 | (echo SSH-2.0-fake; sleep 60) | telnet localhost ${PORT} >/dev/null 2>&1 & | ||
25 | sleep 15 | ||
26 | ${SSH} -F $OBJ/ssh_config somehost true | ||
27 | if [ $? -ne 0 ]; then | ||
28 | fail "ssh connect after login grace timeout failed without privsep" | ||
29 | fi | ||