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