diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | regress/login-timeout.sh | 3 |
2 files changed, 8 insertions, 1 deletions
@@ -91,6 +91,12 @@ | |||
91 | portability glue to support building without libcrypto | 91 | portability glue to support building without libcrypto |
92 | - (djm) [Makefile.in configure.ac sshbuf-getput-basic.c] | 92 | - (djm) [Makefile.in configure.ac sshbuf-getput-basic.c] |
93 | [sshbuf-getput-crypto.c sshbuf.c] compilation and portability fixes | 93 | [sshbuf-getput-crypto.c sshbuf.c] compilation and portability fixes |
94 | - OpenBSD CVS Sync | ||
95 | - djm@cvs.openbsd.org 2014/03/13 20:44:49 | ||
96 | [login-timeout.sh] | ||
97 | this test is a sorry mess of race conditions; add another sleep | ||
98 | to avoid a failure on slow machines (at least until I find a | ||
99 | better way) | ||
94 | 100 | ||
95 | 20140430 | 101 | 20140430 |
96 | - (dtucker) [defines.h] Define __GNUC_PREREQ__ macro if we don't already | 102 | - (dtucker) [defines.h] Define __GNUC_PREREQ__ macro if we don't already |
diff --git a/regress/login-timeout.sh b/regress/login-timeout.sh index d9b48f391..eb76f554b 100644 --- a/regress/login-timeout.sh +++ b/regress/login-timeout.sh | |||
@@ -1,4 +1,4 @@ | |||
1 | # $OpenBSD: login-timeout.sh,v 1.6 2014/02/27 20:04:16 djm Exp $ | 1 | # $OpenBSD: login-timeout.sh,v 1.7 2014/03/13 20:44:49 djm Exp $ |
2 | # Placed in the Public Domain. | 2 | # Placed in the Public Domain. |
3 | 3 | ||
4 | tid="connect after login grace timeout" | 4 | tid="connect after login grace timeout" |
@@ -22,6 +22,7 @@ $SUDO kill `$SUDO cat $PIDFILE` | |||
22 | trace "test login grace without privsep" | 22 | trace "test login grace without privsep" |
23 | echo "UsePrivilegeSeparation no" >> $OBJ/sshd_config | 23 | echo "UsePrivilegeSeparation no" >> $OBJ/sshd_config |
24 | start_sshd | 24 | start_sshd |
25 | sleep 1 | ||
25 | 26 | ||
26 | (echo SSH-2.0-fake; sleep 60) | telnet 127.0.0.1 ${PORT} >/dev/null 2>&1 & | 27 | (echo SSH-2.0-fake; sleep 60) | telnet 127.0.0.1 ${PORT} >/dev/null 2>&1 & |
27 | sleep 15 | 28 | sleep 15 |