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