1 # $OpenBSD: Makefile,v 1.54 2010/06/27 19:19:56 phessler Exp $
3 REGRESS_TARGETS
= t1 t2 t3 t4 t5 t6 t7 t-exec
4 tests
: $(REGRESS_TARGETS
)
6 # Interop tests are not run by default
7 interop interop-tests
: t-exec-interop
10 for F in
$(CLEANFILES
); do
rm -f
$(OBJ
)$$F; done
59 INTEROP_TESTS
= putty-transfer putty-ciphers putty-kex conch-ciphers
60 #INTEROP_TESTS+=ssh-com ssh-com-client ssh-com-keygen ssh-com-sftp
63 CLEANFILES
= t2.out t6.out1 t6.out2 t7.out t7.out.pub copy
.1 copy
.2 \
64 authorized_keys_
${USER} known_hosts pidfile \
65 ssh_config sshd_config.orig ssh_proxy sshd_config sshd_proxy \
66 rsa.pub rsa rsa1.pub rsa1 host.rsa host.rsa1 \
67 rsa-agent rsa-agent.pub rsa1-agent rsa1-agent.pub \
68 ls.copy banner.in banner.out empty.in \
69 scp-ssh-wrapper.scp ssh_proxy_envpass remote_pid \
70 sshd_proxy_bak rsa_ssh2_cr.prv rsa_ssh2_crnl.prv \
71 known_hosts-cert host_ca_key
* cert_host_key
* \
72 putty.rsa2 sshd_proxy_orig \
73 authorized_principals_
${USER}
75 # Enable all malloc(3) randomisations and checks
76 TEST_ENV
= "MALLOC_OPTIONS=AFGJPRX"
79 ssh-keygen
-if
${.CURDIR
}/rsa_ssh2.prv | diff
- ${.CURDIR
}/rsa_openssh.prv
82 cat
${.CURDIR
}/rsa_openssh.prv
> $(OBJ
)/t2.out
83 chmod
600 $(OBJ
)/t2.out
84 ssh-keygen
-yf
$(OBJ
)/t2.out | diff
- ${.CURDIR
}/rsa_openssh.pub
87 ssh-keygen
-ef
${.CURDIR
}/rsa_openssh.pub
>$(OBJ
)/rsa_secsh.pub
88 ssh-keygen
-if
$(OBJ
)/rsa_secsh.pub | diff
- ${.CURDIR
}/rsa_openssh.pub
89 rm -f
${.CURDIR
}/rsa_secsh.pub
92 ssh-keygen
-lf
${.CURDIR
}/rsa_openssh.pub |\
93 awk
'{print $$2}' | diff
- ${.CURDIR
}/t4.ok
96 ssh-keygen
-Bf
${.CURDIR
}/rsa_openssh.pub |\
97 awk
'{print $$2}' | diff
- ${.CURDIR
}/t5.ok
100 ssh-keygen
-if
${.CURDIR
}/dsa_ssh2.prv
> $(OBJ
)/t6.out1
101 ssh-keygen
-if
${.CURDIR
}/dsa_ssh2.pub
> $(OBJ
)/t6.out2
102 chmod
600 $(OBJ
)/t6.out1
103 ssh-keygen
-yf
$(OBJ
)/t6.out1 | diff
- $(OBJ
)/t6.out2
106 ssh-keygen
-q
-t rsa
-N
'' -f
$@
109 ssh-keygen
-lf
$(OBJ
)/t7.out
> /dev
/null
110 ssh-keygen
-Bf
$(OBJ
)/t7.out
> /dev
/null
112 t-exec
: ${LTESTS
:=.sh
}
113 @if
[ "x$?" = "x" ]; then exit
0; fi
; \
114 for TEST in
""$?
; do \
115 echo
"run test $${TEST}" ...
1>&2; \
116 (env SUDO
="${SUDO}" TEST_ENV
=${TEST_ENV} sh
${.CURDIR
}/test-exec.sh
${.OBJDIR
} ${.CURDIR
}/$${TEST}) || exit
$$?
; \
119 t-exec-interop
: ${INTEROP_TESTS
:=.sh
}
120 @if
[ "x$?" = "x" ]; then exit
0; fi
; \
121 for TEST in
""$?
; do \
122 echo
"run test $${TEST}" ...
1>&2; \
123 (env SUDO
="${SUDO}" TEST_ENV
=${TEST_ENV} sh
${.CURDIR
}/test-exec.sh
${.OBJDIR
} ${.CURDIR
}/$${TEST}) || exit
$$?
; \