1# $OpenBSD: Makefile,v 1.27 2004/02/17 08:23:20 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 login-timeout \ 25 agent \ 26 agent-getpeereid \ 27 agent-timeout \ 28 agent-ptrace \ 29 keyscan \ 30 keygen-change \ 31 sftp \ 32 sftp-cmds \ 33 sftp-badcmds \ 34 sftp-batch \ 35 reconfigure \ 36 dynamic-forward \ 37 forwarding 38 39USER!= id -un 40CLEANFILES= t2.out t6.out1 t6.out2 t7.out t7.out.pub copy.1 copy.2 \ 41 authorized_keys_${USER} known_hosts pidfile \ 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 \ 45 ls.copy banner.in banner.out empty.in remote_pid 46 47#LTESTS += ssh-com ssh-com-client ssh-com-keygen ssh-com-sftp 48 49t1: 50 ssh-keygen -if ${.CURDIR}/rsa_ssh2.prv | diff - ${.CURDIR}/rsa_openssh.prv 51 52t2: 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 56 57t3: 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 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: 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 75 76$(OBJ)/t7.out: 77 ssh-keygen -q -t rsa -N '' -f $@ 78 79t7: $(OBJ)/t7.out 80 ssh-keygen -lf $(OBJ)/t7.out > /dev/null 81 ssh-keygen -Bf $(OBJ)/t7.out > /dev/null 82 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 89