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