]> andersk Git - openssh.git/blame - regress/Makefile
- (dtucker) [regress/multiplex.sh] Skip test on platforms that do not
[openssh.git] / regress / Makefile
CommitLineData
403447b4 1# $OpenBSD: Makefile,v 1.31 2004/06/24 19:32:00 djm 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 \
1b0a92c0 16 envpass \
836d58d7 17 transfer \
4c98e94c 18 banner \
ed49cc81 19 rekey \
836d58d7 20 stderr-data \
21 stderr-after-eof \
22 broken-pipe \
23 try-ciphers \
24 yes-head \
42cfd508 25 login-timeout \
836d58d7 26 agent \
8582624b 27 agent-getpeereid \
28 agent-timeout \
29 agent-ptrace \
836d58d7 30 keyscan \
8582624b 31 keygen-change \
53e2a65c 32 scp \
836d58d7 33 sftp \
8582624b 34 sftp-cmds \
2c670155 35 sftp-badcmds \
8582624b 36 sftp-batch \
39c0191e 37 reconfigure \
7664edb6 38 dynamic-forward \
00995aa0 39 forwarding \
403447b4 40 multiplex \
41 reexec
836d58d7 42
43USER!= id -un
906f3b9d 44CLEANFILES= t2.out t6.out1 t6.out2 t7.out t7.out.pub copy.1 copy.2 \
45 authorized_keys_${USER} known_hosts pidfile \
836d58d7 46 ssh_config ssh_proxy sshd_config sshd_proxy \
47 rsa.pub rsa rsa1.pub rsa1 host.rsa host.rsa1 \
48 rsa-agent rsa-agent.pub rsa1-agent rsa1-agent.pub \
53e2a65c 49 ls.copy banner.in banner.out empty.in \
50 scp-ssh-wrapper.exe \
51 remote_pid
836d58d7 52
bdb15424 53#LTESTS += ssh-com ssh-com-client ssh-com-keygen ssh-com-sftp
836d58d7 54
55t1:
56 ssh-keygen -if ${.CURDIR}/rsa_ssh2.prv | diff - ${.CURDIR}/rsa_openssh.prv
57
58t2:
12e07a07 59 cat ${.CURDIR}/rsa_openssh.prv > $(OBJ)/t2.out
60 chmod 600 $(OBJ)/t2.out
61 ssh-keygen -yf $(OBJ)/t2.out | diff - ${.CURDIR}/rsa_openssh.pub
836d58d7 62
63t3:
d99acf36 64 ssh-keygen -ef ${.CURDIR}/rsa_openssh.pub >$(OBJ)/rsa_secsh.pub
65 ssh-keygen -if $(OBJ)/rsa_secsh.pub | diff - ${.CURDIR}/rsa_openssh.pub
66 rm -f ${.CURDIR}/rsa_secsh.pub
836d58d7 67
68t4:
69 ssh-keygen -lf ${.CURDIR}/rsa_openssh.pub |\
70 awk '{print $$2}' | diff - ${.CURDIR}/t4.ok
71
72t5:
73 ssh-keygen -Bf ${.CURDIR}/rsa_openssh.pub |\
74 awk '{print $$2}' | diff - ${.CURDIR}/t5.ok
75
76t6:
12e07a07 77 ssh-keygen -if ${.CURDIR}/dsa_ssh2.prv > $(OBJ)/t6.out1
78 ssh-keygen -if ${.CURDIR}/dsa_ssh2.pub > $(OBJ)/t6.out2
79 chmod 600 $(OBJ)/t6.out1
80 ssh-keygen -yf $(OBJ)/t6.out1 | diff - $(OBJ)/t6.out2
836d58d7 81
12e07a07 82$(OBJ)/t7.out:
836d58d7 83 ssh-keygen -q -t rsa -N '' -f $@
84
12e07a07 85t7: $(OBJ)/t7.out
86 ssh-keygen -lf $(OBJ)/t7.out > /dev/null
87 ssh-keygen -Bf $(OBJ)/t7.out > /dev/null
836d58d7 88
d99acf36 89t-exec: ${LTESTS:=.sh}
90 @if [ "x$?" = "x" ]; then exit 0; fi; \
91 for TEST in ""$?; do \
92 echo "run test $${TEST}" ... 1>&2; \
93 (sh ${.CURDIR}/test-exec.sh ${.OBJDIR} ${.CURDIR}/$${TEST}) || exit $$?; \
94 done
This page took 0.128578 seconds and 5 git commands to generate.