]> andersk Git - openssh.git/blame - regress/Makefile
- (dtucker) [auth-pam.c scard-opensc.c] Tinderbox says auth-pam.c uses
[openssh.git] / regress / Makefile
CommitLineData
42cfd508 1# $OpenBSD: Makefile,v 1.27 2004/02/17 08:23:20 dtucker Exp $
836d58d7 2
d99acf36 3REGRESS_TARGETS= t1 t2 t3 t4 t5 t6 t7 t-exec
4tests: $(REGRESS_TARGETS)
836d58d7 5
d99acf36 6clean:
bdb15424 7 for F in $(CLEANFILES); do rm -f $(OBJ)$$F; done
d99acf36 8distclean: clean
836d58d7 9
10LTESTS= connect \
11 proxy-connect \
12 connect-privsep \
13 proto-version \
14 proto-mismatch \
15 exit-status \
16 transfer \
4c98e94c 17 banner \
ed49cc81 18 rekey \
836d58d7 19 stderr-data \
20 stderr-after-eof \
21 broken-pipe \
22 try-ciphers \
23 yes-head \
42cfd508 24 login-timeout \
836d58d7 25 agent \
8582624b 26 agent-getpeereid \
27 agent-timeout \
28 agent-ptrace \
836d58d7 29 keyscan \
8582624b 30 keygen-change \
836d58d7 31 sftp \
8582624b 32 sftp-cmds \
2c670155 33 sftp-badcmds \
8582624b 34 sftp-batch \
39c0191e 35 reconfigure \
7664edb6 36 dynamic-forward \
836d58d7 37 forwarding
38
39USER!= id -un
906f3b9d 40CLEANFILES= t2.out t6.out1 t6.out2 t7.out t7.out.pub copy.1 copy.2 \
41 authorized_keys_${USER} known_hosts pidfile \
836d58d7 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 \
d642a47a 45 ls.copy banner.in banner.out empty.in remote_pid
836d58d7 46
bdb15424 47#LTESTS += ssh-com ssh-com-client ssh-com-keygen ssh-com-sftp
836d58d7 48
49t1:
50 ssh-keygen -if ${.CURDIR}/rsa_ssh2.prv | diff - ${.CURDIR}/rsa_openssh.prv
51
52t2:
12e07a07 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
836d58d7 56
57t3:
d99acf36 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
836d58d7 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:
12e07a07 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
836d58d7 75
12e07a07 76$(OBJ)/t7.out:
836d58d7 77 ssh-keygen -q -t rsa -N '' -f $@
78
12e07a07 79t7: $(OBJ)/t7.out
80 ssh-keygen -lf $(OBJ)/t7.out > /dev/null
81 ssh-keygen -Bf $(OBJ)/t7.out > /dev/null
836d58d7 82
d99acf36 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.111077 seconds and 5 git commands to generate.