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