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