blob: 7b67ad314c61bf7fa03227570d36083783362a87 [file] [log] [blame]
Darren Tucker50cea672003-06-18 22:45:34 +10001# $OpenBSD: Makefile,v 1.23 2003/06/12 15:43:32 markus Exp $
Damien Miller38cd4352002-05-01 13:17:33 +10002
Damien Miller8b9cde72003-01-22 17:53:16 +11003REGRESS_TARGETS= t1 t2 t3 t4 t5 t6 t7
Damien Miller38cd4352002-05-01 13:17:33 +10004
Damien Miller8b9cde72003-01-22 17:53:16 +11005CLEANFILES+= t2.out t6.out1 t6.out2 t7.out t7.out.pub copy.1 copy.2
Damien Miller38cd4352002-05-01 13:17:33 +10006
7LTESTS= connect \
8 proxy-connect \
9 connect-privsep \
10 proto-version \
11 proto-mismatch \
12 exit-status \
13 transfer \
Darren Tuckerd57a76e2003-06-18 22:32:51 +100014 rekey \
Damien Miller38cd4352002-05-01 13:17:33 +100015 stderr-data \
16 stderr-after-eof \
17 broken-pipe \
18 try-ciphers \
19 yes-head \
20 agent \
Damien Miller8b9cde72003-01-22 17:53:16 +110021 agent-getpeereid \
22 agent-timeout \
23 agent-ptrace \
Damien Miller38cd4352002-05-01 13:17:33 +100024 keyscan \
Damien Miller8b9cde72003-01-22 17:53:16 +110025 keygen-change \
Damien Miller38cd4352002-05-01 13:17:33 +100026 sftp \
Damien Miller8b9cde72003-01-22 17:53:16 +110027 sftp-cmds \
Darren Tuckera4040f52003-06-18 22:35:11 +100028 sftp-badcmds \
Damien Miller8b9cde72003-01-22 17:53:16 +110029 sftp-batch \
Darren Tucker50cea672003-06-18 22:45:34 +100030 reconfigure \
Damien Miller38cd4352002-05-01 13:17:33 +100031 forwarding
32
33USER!= id -un
34CLEANFILES+= authorized_keys_${USER} known_hosts pidfile \
35 ssh_config ssh_proxy sshd_config sshd_proxy \
36 rsa.pub rsa rsa1.pub rsa1 host.rsa host.rsa1 \
37 rsa-agent rsa-agent.pub rsa1-agent rsa1-agent.pub \
38 ls.copy
39
40#LTESTS+= ssh-com ssh-com-client ssh-com-keygen ssh-com-sftp
41
42t1:
43 ssh-keygen -if ${.CURDIR}/rsa_ssh2.prv | diff - ${.CURDIR}/rsa_openssh.prv
44
45t2:
46 cat ${.CURDIR}/rsa_openssh.prv > t2.out
47 chmod 600 t2.out
48 ssh-keygen -yf t2.out | diff - ${.CURDIR}/rsa_openssh.pub
49
50t3:
51 ssh-keygen -ef ${.CURDIR}/rsa_openssh.pub |\
52 ssh-keygen -if /dev/stdin |\
53 diff - ${.CURDIR}/rsa_openssh.pub
54
55t4:
56 ssh-keygen -lf ${.CURDIR}/rsa_openssh.pub |\
57 awk '{print $$2}' | diff - ${.CURDIR}/t4.ok
58
59t5:
60 ssh-keygen -Bf ${.CURDIR}/rsa_openssh.pub |\
61 awk '{print $$2}' | diff - ${.CURDIR}/t5.ok
62
63t6:
64 ssh-keygen -if ${.CURDIR}/dsa_ssh2.prv > t6.out1
65 ssh-keygen -if ${.CURDIR}/dsa_ssh2.pub > t6.out2
66 chmod 600 t6.out1
67 ssh-keygen -yf t6.out1 | diff - t6.out2
68
69t7.out:
70 ssh-keygen -q -t rsa -N '' -f $@
71
72t7: t7.out
73 ssh-keygen -lf t7.out > /dev/null
74 ssh-keygen -Bf t7.out > /dev/null
75
76.for t in ${LTESTS}
Damien Miller8b9cde72003-01-22 17:53:16 +110077REGRESS_TARGETS+=t-${t}
Damien Miller38cd4352002-05-01 13:17:33 +100078t-${t}:
79 sh ${.CURDIR}/test-exec.sh ${.OBJDIR} ${.CURDIR}/${t}.sh
80.endfor
81
82.include "bsd.regress.mk"