]> andersk Git - openssh.git/blame_incremental - regress/Makefile
[configure.ac] SCO3 needs -lcrypt_i for -lprot
[openssh.git] / regress / Makefile
... / ...
CommitLineData
1# $OpenBSD: Makefile,v 1.26 2003/10/11 11:49:49 dtucker Exp $
2
3REGRESS_TARGETS= t1 t2 t3 t4 t5 t6 t7 t-exec
4tests: $(REGRESS_TARGETS)
5
6clean:
7 for F in $(CLEANFILES); do rm -f $(OBJ)$$F; done
8distclean: clean
9
10LTESTS= connect \
11 proxy-connect \
12 connect-privsep \
13 proto-version \
14 proto-mismatch \
15 exit-status \
16 transfer \
17 banner \
18 rekey \
19 stderr-data \
20 stderr-after-eof \
21 broken-pipe \
22 try-ciphers \
23 yes-head \
24 agent \
25 agent-getpeereid \
26 agent-timeout \
27 agent-ptrace \
28 keyscan \
29 keygen-change \
30 sftp \
31 sftp-cmds \
32 sftp-badcmds \
33 sftp-batch \
34 reconfigure \
35 dynamic-forward \
36 forwarding
37
38USER!= id -un
39CLEANFILES= t2.out t6.out1 t6.out2 t7.out t7.out.pub copy.1 copy.2 \
40 authorized_keys_${USER} known_hosts pidfile \
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 \
44 ls.copy banner.in banner.out empty.in remote_pid
45
46#LTESTS += ssh-com ssh-com-client ssh-com-keygen ssh-com-sftp
47
48t1:
49 ssh-keygen -if ${.CURDIR}/rsa_ssh2.prv | diff - ${.CURDIR}/rsa_openssh.prv
50
51t2:
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
55
56t3:
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
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:
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
74
75$(OBJ)/t7.out:
76 ssh-keygen -q -t rsa -N '' -f $@
77
78t7: $(OBJ)/t7.out
79 ssh-keygen -lf $(OBJ)/t7.out > /dev/null
80 ssh-keygen -Bf $(OBJ)/t7.out > /dev/null
81
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.027941 seconds and 5 git commands to generate.