]> andersk Git - openssh.git/blob - regress/Makefile
- djm@cvs.openbsd.org 2008/03/24 21:46:54
[openssh.git] / regress / Makefile
1 #       $OpenBSD: Makefile,v 1.44 2007/12/21 04:13:53 djm 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 distclean:      clean
12
13 LTESTS=         connect \
14                 proxy-connect \
15                 connect-privsep \
16                 proto-version \
17                 proto-mismatch \
18                 exit-status \
19                 envpass \
20                 transfer \
21                 banner \
22                 rekey \
23                 stderr-data \
24                 stderr-after-eof \
25                 broken-pipe \
26                 try-ciphers \
27                 yes-head \
28                 login-timeout \
29                 agent \
30                 agent-getpeereid \
31                 agent-timeout \
32                 agent-ptrace \
33                 keyscan \
34                 keygen-change \
35                 scp \
36                 sftp \
37                 sftp-cmds \
38                 sftp-badcmds \
39                 sftp-batch \
40                 sftp-glob \
41                 reconfigure \
42                 dynamic-forward \
43                 forwarding \
44                 multiplex \
45                 reexec \
46                 brokenkeys \
47                 cfgmatch \
48                 localcommand \
49                 forcecommand
50
51 INTEROP_TESTS=  putty-transfer putty-ciphers putty-kex
52 #INTEROP_TESTS+=ssh-com ssh-com-client ssh-com-keygen ssh-com-sftp
53
54 USER!=          id -un
55 CLEANFILES=     t2.out t6.out1 t6.out2 t7.out t7.out.pub copy.1 copy.2 \
56                 authorized_keys_${USER} known_hosts pidfile \
57                 ssh_config sshd_config.orig ssh_proxy sshd_config sshd_proxy \
58                 rsa.pub rsa rsa1.pub rsa1 host.rsa host.rsa1 \
59                 rsa-agent rsa-agent.pub rsa1-agent rsa1-agent.pub \
60                 ls.copy banner.in banner.out empty.in \
61                 scp-ssh-wrapper.scp ssh_proxy_envpass remote_pid \
62                 sshd_proxy_bak rsa_ssh2_cr.prv rsa_ssh2_crnl.prv
63
64 t1:
65         ssh-keygen -if ${.CURDIR}/rsa_ssh2.prv | diff - ${.CURDIR}/rsa_openssh.prv
66
67 t2:
68         cat ${.CURDIR}/rsa_openssh.prv > $(OBJ)/t2.out
69         chmod 600 $(OBJ)/t2.out
70         ssh-keygen -yf $(OBJ)/t2.out | diff - ${.CURDIR}/rsa_openssh.pub
71
72 t3:
73         ssh-keygen -ef ${.CURDIR}/rsa_openssh.pub >$(OBJ)/rsa_secsh.pub
74         ssh-keygen -if $(OBJ)/rsa_secsh.pub | diff - ${.CURDIR}/rsa_openssh.pub
75         rm -f ${.CURDIR}/rsa_secsh.pub
76
77 t4:
78         ssh-keygen -lf ${.CURDIR}/rsa_openssh.pub |\
79                 awk '{print $$2}' | diff - ${.CURDIR}/t4.ok
80
81 t5:
82         ssh-keygen -Bf ${.CURDIR}/rsa_openssh.pub |\
83                 awk '{print $$2}' | diff - ${.CURDIR}/t5.ok
84
85 t6:
86         ssh-keygen -if ${.CURDIR}/dsa_ssh2.prv > $(OBJ)/t6.out1
87         ssh-keygen -if ${.CURDIR}/dsa_ssh2.pub > $(OBJ)/t6.out2
88         chmod 600 $(OBJ)/t6.out1
89         ssh-keygen -yf $(OBJ)/t6.out1 | diff - $(OBJ)/t6.out2
90
91 $(OBJ)/t7.out:
92         ssh-keygen -q -t rsa -N '' -f $@
93
94 t7: $(OBJ)/t7.out
95         ssh-keygen -lf $(OBJ)/t7.out > /dev/null
96         ssh-keygen -Bf $(OBJ)/t7.out > /dev/null
97
98 t-exec: ${LTESTS:=.sh}
99         @if [ "x$?" = "x" ]; then exit 0; fi; \
100         for TEST in ""$?; do \
101                 echo "run test $${TEST}" ... 1>&2; \
102                 (env SUDO=${SUDO} sh ${.CURDIR}/test-exec.sh ${.OBJDIR} ${.CURDIR}/$${TEST}) || exit $$?; \
103         done
104
105 t-exec-interop: ${INTEROP_TESTS:=.sh}
106         @if [ "x$?" = "x" ]; then exit 0; fi; \
107         for TEST in ""$?; do \
108                 echo "run test $${TEST}" ... 1>&2; \
109                 (env SUDO=${SUDO} sh ${.CURDIR}/test-exec.sh ${.OBJDIR} ${.CURDIR}/$${TEST}) || exit $$?; \
110         done
111
This page took 1.044692 seconds and 5 git commands to generate.