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