- (dtucker) [platform.c session.c] Move the PAM credential establishment for
[openssh-git.git] / regress / Makefile
blobf51307f02c6d66c5309b18b07f19a21d4f3c3690
1 # $OpenBSD: Makefile,v 1.55 2010/08/31 12:24:25 djm Exp $
3 REGRESS_TARGETS= t1 t2 t3 t4 t5 t6 t7 t8 t9 t-exec
4 tests: $(REGRESS_TARGETS)
6 # Interop tests are not run by default
7 interop interop-tests: t-exec-interop
9 clean:
10 for F in $(CLEANFILES); do rm -f $(OBJ)$$F; done
11 rm -rf $(OBJ).putty
13 distclean: clean
15 LTESTS= connect \
16 proxy-connect \
17 connect-privsep \
18 proto-version \
19 proto-mismatch \
20 exit-status \
21 envpass \
22 transfer \
23 banner \
24 rekey \
25 stderr-data \
26 stderr-after-eof \
27 broken-pipe \
28 try-ciphers \
29 yes-head \
30 login-timeout \
31 agent \
32 agent-getpeereid \
33 agent-timeout \
34 agent-ptrace \
35 keyscan \
36 keygen-change \
37 keygen-convert \
38 key-options \
39 scp \
40 sftp \
41 sftp-cmds \
42 sftp-badcmds \
43 sftp-batch \
44 sftp-glob \
45 reconfigure \
46 dynamic-forward \
47 forwarding \
48 multiplex \
49 reexec \
50 brokenkeys \
51 cfgmatch \
52 addrmatch \
53 localcommand \
54 forcecommand \
55 portnum \
56 cert-hostkey \
57 cert-userkey
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
62 USER!= id -un
63 CLEANFILES= t2.out t6.out1 t6.out2 t7.out t7.out.pub copy.1 copy.2 \
64 t8.out t8.out.pub t9.out t9.out.pub \
65 authorized_keys_${USER} known_hosts pidfile \
66 ssh_config sshd_config.orig ssh_proxy sshd_config sshd_proxy \
67 rsa.pub rsa rsa1.pub rsa1 host.rsa host.rsa1 \
68 rsa-agent rsa-agent.pub rsa1-agent rsa1-agent.pub \
69 ls.copy banner.in banner.out empty.in \
70 scp-ssh-wrapper.scp ssh_proxy_envpass remote_pid \
71 sshd_proxy_bak rsa_ssh2_cr.prv rsa_ssh2_crnl.prv \
72 known_hosts-cert host_ca_key* cert_host_key* \
73 putty.rsa2 sshd_proxy_orig \
74 authorized_principals_${USER}
76 # Enable all malloc(3) randomisations and checks
77 TEST_ENV= "MALLOC_OPTIONS=AFGJPRX"
79 t1:
80 ssh-keygen -if ${.CURDIR}/rsa_ssh2.prv | diff - ${.CURDIR}/rsa_openssh.prv
82 t2:
83 cat ${.CURDIR}/rsa_openssh.prv > $(OBJ)/t2.out
84 chmod 600 $(OBJ)/t2.out
85 ssh-keygen -yf $(OBJ)/t2.out | diff - ${.CURDIR}/rsa_openssh.pub
87 t3:
88 ssh-keygen -ef ${.CURDIR}/rsa_openssh.pub >$(OBJ)/rsa_secsh.pub
89 ssh-keygen -if $(OBJ)/rsa_secsh.pub | diff - ${.CURDIR}/rsa_openssh.pub
90 rm -f ${.CURDIR}/rsa_secsh.pub
92 t4:
93 ssh-keygen -lf ${.CURDIR}/rsa_openssh.pub |\
94 awk '{print $$2}' | diff - ${.CURDIR}/t4.ok
96 t5:
97 ssh-keygen -Bf ${.CURDIR}/rsa_openssh.pub |\
98 awk '{print $$2}' | diff - ${.CURDIR}/t5.ok
101 ssh-keygen -if ${.CURDIR}/dsa_ssh2.prv > $(OBJ)/t6.out1
102 ssh-keygen -if ${.CURDIR}/dsa_ssh2.pub > $(OBJ)/t6.out2
103 chmod 600 $(OBJ)/t6.out1
104 ssh-keygen -yf $(OBJ)/t6.out1 | diff - $(OBJ)/t6.out2
106 $(OBJ)/t7.out:
107 ssh-keygen -q -t rsa -N '' -f $@
109 t7: $(OBJ)/t7.out
110 ssh-keygen -lf $(OBJ)/t7.out > /dev/null
111 ssh-keygen -Bf $(OBJ)/t7.out > /dev/null
113 t-exec: ${LTESTS:=.sh}
114 @if [ "x$?" = "x" ]; then exit 0; fi; \
115 for TEST in ""$?; do \
116 echo "run test $${TEST}" ... 1>&2; \
117 (env SUDO="${SUDO}" TEST_ENV=${TEST_ENV} sh ${.CURDIR}/test-exec.sh ${.OBJDIR} ${.CURDIR}/$${TEST}) || exit $$?; \
118 done
120 t-exec-interop: ${INTEROP_TESTS:=.sh}
121 @if [ "x$?" = "x" ]; then exit 0; fi; \
122 for TEST in ""$?; do \
123 echo "run test $${TEST}" ... 1>&2; \
124 (env SUDO="${SUDO}" TEST_ENV=${TEST_ENV} sh ${.CURDIR}/test-exec.sh ${.OBJDIR} ${.CURDIR}/$${TEST}) || exit $$?; \
125 done