mirror of
git://anongit.mindrot.org/openssh.git
synced 2025-01-12 12:49:29 +00:00
- (dtucker) [regress/Makefile regress/test-exec.sh] Roll back the -nt
removal. The "make clean" removes modpipe which is built by the top-level directory before running the tests. Spotted by tim@
This commit is contained in:
parent
9542de4547
commit
acd2060f75
@ -8,6 +8,9 @@
|
||||
by Kevin Brott, ok djm.
|
||||
- (dtucker) [misc.c] Remove define added for fallback testing that was
|
||||
mistakenly included in the previous commit.
|
||||
- (dtucker) [regress/Makefile regress/test-exec.sh] Roll back the -nt
|
||||
removal. The "make clean" removes modpipe which is built by the top-level
|
||||
directory before running the tests. Spotted by tim@
|
||||
|
||||
20130804
|
||||
- (dtucker) [auth-krb5.c configure.ac openbsd-compat/bsd-misc.h] Add support
|
||||
|
@ -1,7 +1,7 @@
|
||||
# $OpenBSD: Makefile,v 1.65 2013/04/18 02:46:12 djm Exp $
|
||||
|
||||
REGRESS_TARGETS= t1 t2 t3 t4 t5 t6 t7 t8 t9 t-exec
|
||||
tests: clean $(REGRESS_TARGETS)
|
||||
tests: $(REGRESS_TARGETS)
|
||||
|
||||
# Interop tests are not run by default
|
||||
interop interop-tests: t-exec-interop
|
||||
|
@ -368,7 +368,7 @@ rm -f $OBJ/known_hosts $OBJ/authorized_keys_$USER
|
||||
trace "generate keys"
|
||||
for t in rsa rsa1; do
|
||||
# generate user key
|
||||
if [ ! -f $OBJ/$t ]; then
|
||||
if [ ! -f $OBJ/$t ] || [ ${SSHKEYGEN} -nt $OBJ/$t ]; then
|
||||
rm -f $OBJ/$t
|
||||
${SSHKEYGEN} -q -N '' -t $t -f $OBJ/$t ||\
|
||||
fail "ssh-keygen for $t failed"
|
||||
|
Loading…
Reference in New Issue
Block a user