]> andersk Git - gssapi-openssh.git/blame - openssh/regress/Makefile
merged OPENSSH_5_1P1_GSSAPI_20080730 to GPT-branch
[gssapi-openssh.git] / openssh / regress / Makefile
CommitLineData
6f25cbdd 1# $OpenBSD: Makefile,v 1.48 2008/06/28 13:57:25 djm Exp $
1b56ff3d 2
3REGRESS_TARGETS= t1 t2 t3 t4 t5 t6 t7 t-exec
4tests: $(REGRESS_TARGETS)
5
bd5d5d2a 6# Interop tests are not run by default
7interop interop-tests: t-exec-interop
8
1b56ff3d 9clean:
10 for F in $(CLEANFILES); do rm -f $(OBJ)$$F; done
bd5d5d2a 11 rm -rf $(OBJ).putty
12
1b56ff3d 13distclean: clean
14
15LTESTS= 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 \
6f25cbdd 37 key-options \
1b56ff3d 38 scp \
39 sftp \
40 sftp-cmds \
41 sftp-badcmds \
42 sftp-batch \
34fee935 43 sftp-glob \
1b56ff3d 44 reconfigure \
45 dynamic-forward \
46 forwarding \
47 multiplex \
34fee935 48 reexec \
2e437378 49 brokenkeys \
50 cfgmatch \
6f25cbdd 51 addrmatch \
bd5d5d2a 52 localcommand \
2e437378 53 forcecommand
1b56ff3d 54
6f25cbdd 55INTEROP_TESTS= putty-transfer putty-ciphers putty-kex conch-ciphers
bd5d5d2a 56#INTEROP_TESTS+=ssh-com ssh-com-client ssh-com-keygen ssh-com-sftp
57
1b56ff3d 58USER!= id -un
59CLEANFILES= t2.out t6.out1 t6.out2 t7.out t7.out.pub copy.1 copy.2 \
60 authorized_keys_${USER} known_hosts pidfile \
34fee935 61 ssh_config sshd_config.orig ssh_proxy sshd_config sshd_proxy \
1b56ff3d 62 rsa.pub rsa rsa1.pub rsa1 host.rsa host.rsa1 \
63 rsa-agent rsa-agent.pub rsa1-agent rsa1-agent.pub \
64 ls.copy banner.in banner.out empty.in \
2e437378 65 scp-ssh-wrapper.scp ssh_proxy_envpass remote_pid \
bd5d5d2a 66 sshd_proxy_bak rsa_ssh2_cr.prv rsa_ssh2_crnl.prv \
67 putty.rsa2
1b56ff3d 68
69t1:
70 ssh-keygen -if ${.CURDIR}/rsa_ssh2.prv | diff - ${.CURDIR}/rsa_openssh.prv
71
72t2:
73 cat ${.CURDIR}/rsa_openssh.prv > $(OBJ)/t2.out
74 chmod 600 $(OBJ)/t2.out
75 ssh-keygen -yf $(OBJ)/t2.out | diff - ${.CURDIR}/rsa_openssh.pub
76
77t3:
78 ssh-keygen -ef ${.CURDIR}/rsa_openssh.pub >$(OBJ)/rsa_secsh.pub
79 ssh-keygen -if $(OBJ)/rsa_secsh.pub | diff - ${.CURDIR}/rsa_openssh.pub
80 rm -f ${.CURDIR}/rsa_secsh.pub
81
82t4:
83 ssh-keygen -lf ${.CURDIR}/rsa_openssh.pub |\
84 awk '{print $$2}' | diff - ${.CURDIR}/t4.ok
85
86t5:
87 ssh-keygen -Bf ${.CURDIR}/rsa_openssh.pub |\
88 awk '{print $$2}' | diff - ${.CURDIR}/t5.ok
89
90t6:
91 ssh-keygen -if ${.CURDIR}/dsa_ssh2.prv > $(OBJ)/t6.out1
92 ssh-keygen -if ${.CURDIR}/dsa_ssh2.pub > $(OBJ)/t6.out2
93 chmod 600 $(OBJ)/t6.out1
94 ssh-keygen -yf $(OBJ)/t6.out1 | diff - $(OBJ)/t6.out2
95
96$(OBJ)/t7.out:
97 ssh-keygen -q -t rsa -N '' -f $@
98
99t7: $(OBJ)/t7.out
100 ssh-keygen -lf $(OBJ)/t7.out > /dev/null
101 ssh-keygen -Bf $(OBJ)/t7.out > /dev/null
102
103t-exec: ${LTESTS:=.sh}
104 @if [ "x$?" = "x" ]; then exit 0; fi; \
105 for TEST in ""$?; do \
106 echo "run test $${TEST}" ... 1>&2; \
34fee935 107 (env SUDO=${SUDO} sh ${.CURDIR}/test-exec.sh ${.OBJDIR} ${.CURDIR}/$${TEST}) || exit $$?; \
1b56ff3d 108 done
bd5d5d2a 109
110t-exec-interop: ${INTEROP_TESTS:=.sh}
111 @if [ "x$?" = "x" ]; then exit 0; fi; \
112 for TEST in ""$?; do \
113 echo "run test $${TEST}" ... 1>&2; \
114 (env SUDO=${SUDO} sh ${.CURDIR}/test-exec.sh ${.OBJDIR} ${.CURDIR}/$${TEST}) || exit $$?; \
115 done
116
This page took 0.065834 seconds and 5 git commands to generate.