Deleted Added
sdiff udiff text old ( 218767 ) new ( 248613 )
full compact
1# $OpenBSD: Makefile,v 1.62 2013/01/18 00:45:29 djm Exp $
2
3REGRESS_TARGETS= t1 t2 t3 t4 t5 t6 t7 t8 t9 t-exec
4tests: $(REGRESS_TARGETS)
5
6# Interop tests are not run by default
7interop interop-tests: t-exec-interop
8
9clean:

--- 42 unchanged lines hidden (view full) ---

52 addrmatch \
53 localcommand \
54 forcecommand \
55 portnum \
56 keytype \
57 kextype \
58 cert-hostkey \
59 cert-userkey \
60 host-expand \
61 keys-command \
62 forward-control \
63 integrity \
64 krl
65
66INTEROP_TESTS= putty-transfer putty-ciphers putty-kex conch-ciphers
67#INTEROP_TESTS+=ssh-com ssh-com-client ssh-com-keygen ssh-com-sftp
68
69#LTESTS= cipher-speed
70
71USER!= id -un
72CLEANFILES= t2.out t3.out t6.out1 t6.out2 t7.out t7.out.pub copy.1 copy.2 \
73 t8.out t8.out.pub t9.out t9.out.pub \
74 authorized_keys_${USER} known_hosts pidfile testdata \
75 ssh_config sshd_config.orig ssh_proxy sshd_config sshd_proxy \
76 rsa.pub rsa rsa1.pub rsa1 host.rsa host.rsa1 \
77 rsa-agent rsa-agent.pub rsa1-agent rsa1-agent.pub \
78 ls.copy banner.in banner.out empty.in \
79 scp-ssh-wrapper.scp ssh_proxy_envpass remote_pid \
80 sshd_proxy_bak rsa_ssh2_cr.prv rsa_ssh2_crnl.prv \
81 known_hosts-cert host_ca_key* cert_host_key* cert_user_key* \
82 putty.rsa2 sshd_proxy_orig ssh_proxy_bak \
83 key.rsa-* key.dsa-* key.ecdsa-* \
84 authorized_principals_${USER} expect actual ready \
85 sshd_proxy.* authorized_keys_${USER}.* modpipe revoked-* krl-*
86
87
88# Enable all malloc(3) randomisations and checks
89TEST_ENV= "MALLOC_OPTIONS=AFGJPRX"
90
91TEST_SSH_SSHKEYGEN?=ssh-keygen
92
93CPPFLAGS=-I..
94
95t1:
96 ${TEST_SSH_SSHKEYGEN} -if ${.CURDIR}/rsa_ssh2.prv | diff - ${.CURDIR}/rsa_openssh.prv
97 tr '\n' '\r' <${.CURDIR}/rsa_ssh2.prv > ${.OBJDIR}/rsa_ssh2_cr.prv
98 ${TEST_SSH_SSHKEYGEN} -if ${.OBJDIR}/rsa_ssh2_cr.prv | diff - ${.CURDIR}/rsa_openssh.prv
99 awk '{print $$0 "\r"}' ${.CURDIR}/rsa_ssh2.prv > ${.OBJDIR}/rsa_ssh2_crnl.prv
100 ${TEST_SSH_SSHKEYGEN} -if ${.OBJDIR}/rsa_ssh2_crnl.prv | diff - ${.CURDIR}/rsa_openssh.prv
101
102t2:

--- 62 unchanged lines hidden ---