blob: 2b8dbd6f6f242fa90b75a88ee25b52628a70b8ff [file] [log] [blame]
Darren Tuckera4040f52003-06-18 22:35:11 +10001# $OpenBSD: Makefile,v 1.22 2003/04/04 09:34:22 djm 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 \
Damien Miller38cd4352002-05-01 13:17:33 +100030 forwarding
31
32USER!= id -un
33CLEANFILES+= authorized_keys_${USER} known_hosts pidfile \
34 ssh_config ssh_proxy sshd_config sshd_proxy \
35 rsa.pub rsa rsa1.pub rsa1 host.rsa host.rsa1 \
36 rsa-agent rsa-agent.pub rsa1-agent rsa1-agent.pub \
37 ls.copy
38
39#LTESTS+= ssh-com ssh-com-client ssh-com-keygen ssh-com-sftp
40
41t1:
42 ssh-keygen -if ${.CURDIR}/rsa_ssh2.prv | diff - ${.CURDIR}/rsa_openssh.prv
43
44t2:
45 cat ${.CURDIR}/rsa_openssh.prv > t2.out
46 chmod 600 t2.out
47 ssh-keygen -yf t2.out | diff - ${.CURDIR}/rsa_openssh.pub
48
49t3:
50 ssh-keygen -ef ${.CURDIR}/rsa_openssh.pub |\
51 ssh-keygen -if /dev/stdin |\
52 diff - ${.CURDIR}/rsa_openssh.pub
53
54t4:
55 ssh-keygen -lf ${.CURDIR}/rsa_openssh.pub |\
56 awk '{print $$2}' | diff - ${.CURDIR}/t4.ok
57
58t5:
59 ssh-keygen -Bf ${.CURDIR}/rsa_openssh.pub |\
60 awk '{print $$2}' | diff - ${.CURDIR}/t5.ok
61
62t6:
63 ssh-keygen -if ${.CURDIR}/dsa_ssh2.prv > t6.out1
64 ssh-keygen -if ${.CURDIR}/dsa_ssh2.pub > t6.out2
65 chmod 600 t6.out1
66 ssh-keygen -yf t6.out1 | diff - t6.out2
67
68t7.out:
69 ssh-keygen -q -t rsa -N '' -f $@
70
71t7: t7.out
72 ssh-keygen -lf t7.out > /dev/null
73 ssh-keygen -Bf t7.out > /dev/null
74
75.for t in ${LTESTS}
Damien Miller8b9cde72003-01-22 17:53:16 +110076REGRESS_TARGETS+=t-${t}
Damien Miller38cd4352002-05-01 13:17:33 +100077t-${t}:
78 sh ${.CURDIR}/test-exec.sh ${.OBJDIR} ${.CURDIR}/${t}.sh
79.endfor
80
81.include "bsd.regress.mk"