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