diff options
Diffstat (limited to 'regress/Makefile')
-rw-r--r-- | regress/Makefile | 18 |
1 files changed, 13 insertions, 5 deletions
diff --git a/regress/Makefile b/regress/Makefile index f114c27e9..6ef5d9cce 100644 --- a/regress/Makefile +++ b/regress/Makefile | |||
@@ -1,4 +1,4 @@ | |||
1 | # $OpenBSD: Makefile,v 1.58 2011/01/06 22:46:21 djm Exp $ | 1 | # $OpenBSD: Makefile,v 1.62 2013/01/18 00:45:29 djm Exp $ |
2 | 2 | ||
3 | REGRESS_TARGETS= t1 t2 t3 t4 t5 t6 t7 t8 t9 t-exec | 3 | REGRESS_TARGETS= t1 t2 t3 t4 t5 t6 t7 t8 t9 t-exec |
4 | tests: $(REGRESS_TARGETS) | 4 | tests: $(REGRESS_TARGETS) |
@@ -57,7 +57,11 @@ LTESTS= connect \ | |||
57 | kextype \ | 57 | kextype \ |
58 | cert-hostkey \ | 58 | cert-hostkey \ |
59 | cert-userkey \ | 59 | cert-userkey \ |
60 | host-expand | 60 | host-expand \ |
61 | keys-command \ | ||
62 | forward-control \ | ||
63 | integrity \ | ||
64 | krl | ||
61 | 65 | ||
62 | INTEROP_TESTS= putty-transfer putty-ciphers putty-kex conch-ciphers | 66 | INTEROP_TESTS= putty-transfer putty-ciphers putty-kex conch-ciphers |
63 | #INTEROP_TESTS+=ssh-com ssh-com-client ssh-com-keygen ssh-com-sftp | 67 | #INTEROP_TESTS+=ssh-com ssh-com-client ssh-com-keygen ssh-com-sftp |
@@ -67,23 +71,27 @@ INTEROP_TESTS= putty-transfer putty-ciphers putty-kex conch-ciphers | |||
67 | USER!= id -un | 71 | USER!= id -un |
68 | CLEANFILES= t2.out t3.out t6.out1 t6.out2 t7.out t7.out.pub copy.1 copy.2 \ | 72 | CLEANFILES= t2.out t3.out t6.out1 t6.out2 t7.out t7.out.pub copy.1 copy.2 \ |
69 | t8.out t8.out.pub t9.out t9.out.pub \ | 73 | t8.out t8.out.pub t9.out t9.out.pub \ |
70 | authorized_keys_${USER} known_hosts pidfile \ | 74 | authorized_keys_${USER} known_hosts pidfile testdata \ |
71 | ssh_config sshd_config.orig ssh_proxy sshd_config sshd_proxy \ | 75 | ssh_config sshd_config.orig ssh_proxy sshd_config sshd_proxy \ |
72 | rsa.pub rsa rsa1.pub rsa1 host.rsa host.rsa1 \ | 76 | rsa.pub rsa rsa1.pub rsa1 host.rsa host.rsa1 \ |
73 | rsa-agent rsa-agent.pub rsa1-agent rsa1-agent.pub \ | 77 | rsa-agent rsa-agent.pub rsa1-agent rsa1-agent.pub \ |
74 | ls.copy banner.in banner.out empty.in \ | 78 | ls.copy banner.in banner.out empty.in \ |
75 | scp-ssh-wrapper.scp ssh_proxy_envpass remote_pid \ | 79 | scp-ssh-wrapper.scp ssh_proxy_envpass remote_pid \ |
76 | sshd_proxy_bak rsa_ssh2_cr.prv rsa_ssh2_crnl.prv \ | 80 | sshd_proxy_bak rsa_ssh2_cr.prv rsa_ssh2_crnl.prv \ |
77 | known_hosts-cert host_ca_key* cert_host_key* \ | 81 | known_hosts-cert host_ca_key* cert_host_key* cert_user_key* \ |
78 | putty.rsa2 sshd_proxy_orig ssh_proxy_bak \ | 82 | putty.rsa2 sshd_proxy_orig ssh_proxy_bak \ |
79 | key.rsa-* key.dsa-* key.ecdsa-* \ | 83 | key.rsa-* key.dsa-* key.ecdsa-* \ |
80 | authorized_principals_${USER} expect actual | 84 | authorized_principals_${USER} expect actual ready \ |
85 | sshd_proxy.* authorized_keys_${USER}.* modpipe revoked-* krl-* | ||
86 | |||
81 | 87 | ||
82 | # Enable all malloc(3) randomisations and checks | 88 | # Enable all malloc(3) randomisations and checks |
83 | TEST_ENV= "MALLOC_OPTIONS=AFGJPRX" | 89 | TEST_ENV= "MALLOC_OPTIONS=AFGJPRX" |
84 | 90 | ||
85 | TEST_SSH_SSHKEYGEN?=ssh-keygen | 91 | TEST_SSH_SSHKEYGEN?=ssh-keygen |
86 | 92 | ||
93 | CPPFLAGS=-I.. | ||
94 | |||
87 | t1: | 95 | t1: |
88 | ${TEST_SSH_SSHKEYGEN} -if ${.CURDIR}/rsa_ssh2.prv | diff - ${.CURDIR}/rsa_openssh.prv | 96 | ${TEST_SSH_SSHKEYGEN} -if ${.CURDIR}/rsa_ssh2.prv | diff - ${.CURDIR}/rsa_openssh.prv |
89 | tr '\n' '\r' <${.CURDIR}/rsa_ssh2.prv > ${.OBJDIR}/rsa_ssh2_cr.prv | 97 | tr '\n' '\r' <${.CURDIR}/rsa_ssh2.prv > ${.OBJDIR}/rsa_ssh2_cr.prv |